Update to Chromium version 115.0.5790.0 (#1148114)

- Mac: 13.3 SDK (Xcode 14.3) is now required
This commit is contained in:
Marshall Greenblatt
2023-05-30 11:55:32 +03:00
parent cf8b7db4b4
commit 695ee2a041
83 changed files with 604 additions and 633 deletions

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=00565554ad76306eea416264a355273d72af7820$
// $hash=74394106da192b6b9fc284bbf8899ae3d5ea0b8d$
//
#include "libcef_dll/cpptoc/x509cert_principal_cpptoc.h"
@ -112,35 +112,6 @@ x509cert_principal_get_country_name(struct _cef_x509cert_principal_t* self) {
return _retval.DetachToUserFree();
}
void CEF_CALLBACK
x509cert_principal_get_street_addresses(struct _cef_x509cert_principal_t* self,
cef_string_list_t addresses) {
shutdown_checker::AssertNotShutdown();
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
DCHECK(self);
if (!self) {
return;
}
// Verify param: addresses; type: string_vec_byref
DCHECK(addresses);
if (!addresses) {
return;
}
// Translate param: addresses; type: string_vec_byref
std::vector<CefString> addressesList;
transfer_string_list_contents(addresses, addressesList);
// Execute
CefX509CertPrincipalCppToC::Get(self)->GetStreetAddresses(addressesList);
// Restore param: addresses; type: string_vec_byref
cef_string_list_clear(addresses);
transfer_string_list_contents(addressesList, addresses);
}
void CEF_CALLBACK x509cert_principal_get_organization_names(
struct _cef_x509cert_principal_t* self,
cef_string_list_t names) {
@ -199,35 +170,6 @@ void CEF_CALLBACK x509cert_principal_get_organization_unit_names(
transfer_string_list_contents(namesList, names);
}
void CEF_CALLBACK
x509cert_principal_get_domain_components(struct _cef_x509cert_principal_t* self,
cef_string_list_t components) {
shutdown_checker::AssertNotShutdown();
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
DCHECK(self);
if (!self) {
return;
}
// Verify param: components; type: string_vec_byref
DCHECK(components);
if (!components) {
return;
}
// Translate param: components; type: string_vec_byref
std::vector<CefString> componentsList;
transfer_string_list_contents(components, componentsList);
// Execute
CefX509CertPrincipalCppToC::Get(self)->GetDomainComponents(componentsList);
// Restore param: components; type: string_vec_byref
cef_string_list_clear(components);
transfer_string_list_contents(componentsList, components);
}
} // namespace
// CONSTRUCTOR - Do not edit by hand.
@ -239,12 +181,10 @@ CefX509CertPrincipalCppToC::CefX509CertPrincipalCppToC() {
GetStruct()->get_state_or_province_name =
x509cert_principal_get_state_or_province_name;
GetStruct()->get_country_name = x509cert_principal_get_country_name;
GetStruct()->get_street_addresses = x509cert_principal_get_street_addresses;
GetStruct()->get_organization_names =
x509cert_principal_get_organization_names;
GetStruct()->get_organization_unit_names =
x509cert_principal_get_organization_unit_names;
GetStruct()->get_domain_components = x509cert_principal_get_domain_components;
}
// DESTRUCTOR - Do not edit by hand.