mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 115.0.5790.0 (#1148114)
- Mac: 13.3 SDK (Xcode 14.3) is now required
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=c577948bc4903eac504888829a610d149757fcc4$
|
||||
// $hash=5a5997b69936ad47fb9ab5b6f4016f33c91110c7$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/x509cert_principal_ctocpp.h"
|
||||
@@ -117,36 +117,6 @@ CefString CefX509CertPrincipalCToCpp::GetCountryName() {
|
||||
return _retvalStr;
|
||||
}
|
||||
|
||||
NO_SANITIZE("cfi-icall")
|
||||
void CefX509CertPrincipalCToCpp::GetStreetAddresses(
|
||||
std::vector<CefString>& addresses) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_x509cert_principal_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, get_street_addresses)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Translate param: addresses; type: string_vec_byref
|
||||
cef_string_list_t addressesList = cef_string_list_alloc();
|
||||
DCHECK(addressesList);
|
||||
if (addressesList) {
|
||||
transfer_string_list_contents(addresses, addressesList);
|
||||
}
|
||||
|
||||
// Execute
|
||||
_struct->get_street_addresses(_struct, addressesList);
|
||||
|
||||
// Restore param:addresses; type: string_vec_byref
|
||||
if (addressesList) {
|
||||
addresses.clear();
|
||||
transfer_string_list_contents(addressesList, addresses);
|
||||
cef_string_list_free(addressesList);
|
||||
}
|
||||
}
|
||||
|
||||
NO_SANITIZE("cfi-icall")
|
||||
void CefX509CertPrincipalCToCpp::GetOrganizationNames(
|
||||
std::vector<CefString>& names) {
|
||||
@@ -207,36 +177,6 @@ void CefX509CertPrincipalCToCpp::GetOrganizationUnitNames(
|
||||
}
|
||||
}
|
||||
|
||||
NO_SANITIZE("cfi-icall")
|
||||
void CefX509CertPrincipalCToCpp::GetDomainComponents(
|
||||
std::vector<CefString>& components) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_x509cert_principal_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, get_domain_components)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Translate param: components; type: string_vec_byref
|
||||
cef_string_list_t componentsList = cef_string_list_alloc();
|
||||
DCHECK(componentsList);
|
||||
if (componentsList) {
|
||||
transfer_string_list_contents(components, componentsList);
|
||||
}
|
||||
|
||||
// Execute
|
||||
_struct->get_domain_components(_struct, componentsList);
|
||||
|
||||
// Restore param:components; type: string_vec_byref
|
||||
if (componentsList) {
|
||||
components.clear();
|
||||
transfer_string_list_contents(componentsList, components);
|
||||
cef_string_list_free(componentsList);
|
||||
}
|
||||
}
|
||||
|
||||
// CONSTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefX509CertPrincipalCToCpp::CefX509CertPrincipalCToCpp() {}
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=26c06425ee3d75470177631cff1348e5dc26f946$
|
||||
// $hash=8baec3ed7625e735ebfb911bd92dacecbebe9cb4$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CTOCPP_X509CERT_PRINCIPAL_CTOCPP_H_
|
||||
@@ -41,10 +41,8 @@ class CefX509CertPrincipalCToCpp
|
||||
CefString GetLocalityName() override;
|
||||
CefString GetStateOrProvinceName() override;
|
||||
CefString GetCountryName() override;
|
||||
void GetStreetAddresses(std::vector<CefString>& addresses) override;
|
||||
void GetOrganizationNames(std::vector<CefString>& names) override;
|
||||
void GetOrganizationUnitNames(std::vector<CefString>& names) override;
|
||||
void GetDomainComponents(std::vector<CefString>& components) override;
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CTOCPP_X509CERT_PRINCIPAL_CTOCPP_H_
|
||||
|
Reference in New Issue
Block a user