Fix translator error with X509CertificateList (issue #1824)

This commit is contained in:
Marshall Greenblatt
2016-10-27 15:44:31 -04:00
parent 17c2ecd79d
commit ffab334e94
8 changed files with 11 additions and 10 deletions

View File

@@ -455,7 +455,7 @@ bool CefRequestHandlerCToCpp::OnCertificateError(CefRefPtr<CefBrowser> browser,
bool CefRequestHandlerCToCpp::OnSelectClientCertificate(
CefRefPtr<CefBrowser> browser, bool isProxy, const CefString& host,
int port, const CefX509CertificateList& certificates,
int port, const X509CertificateList& certificates,
CefRefPtr<CefSelectClientCertificateCallback> callback) {
cef_request_handler_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, on_select_client_certificate))

View File

@@ -70,8 +70,7 @@ class CefRequestHandlerCToCpp
CefRefPtr<CefSSLInfo> ssl_info,
CefRefPtr<CefRequestCallback> callback) override;
bool OnSelectClientCertificate(CefRefPtr<CefBrowser> browser, bool isProxy,
const CefString& host, int port,
const CefX509CertificateList& certificates,
const CefString& host, int port, const X509CertificateList& certificates,
CefRefPtr<CefSelectClientCertificateCallback> callback) override;
void OnPluginCrashed(CefRefPtr<CefBrowser> browser,
const CefString& plugin_path) override;