mirror of
https://github.com/electron/electron.git
synced 2026-01-10 07:58:08 -05:00
AllowCertificateError no longer sends overridable
This commit is contained in:
committed by
Aleksei Kuzmin
parent
7f50c3d08e
commit
fb55db665c
@@ -702,7 +702,6 @@ void App::AllowCertificateError(
|
||||
const net::SSLInfo& ssl_info,
|
||||
const GURL& request_url,
|
||||
content::ResourceType resource_type,
|
||||
bool overridable,
|
||||
bool strict_enforcement,
|
||||
bool expired_previous_decision,
|
||||
const base::Callback<void(content::CertificateRequestResultType)>&
|
||||
|
||||
@@ -133,7 +133,6 @@ class App : public AtomBrowserClient::Delegate,
|
||||
const net::SSLInfo& ssl_info,
|
||||
const GURL& request_url,
|
||||
content::ResourceType resource_type,
|
||||
bool overridable,
|
||||
bool strict_enforcement,
|
||||
bool expired_previous_decision,
|
||||
const base::Callback<void(content::CertificateRequestResultType)>&
|
||||
|
||||
@@ -348,7 +348,6 @@ void AtomBrowserClient::AllowCertificateError(
|
||||
const net::SSLInfo& ssl_info,
|
||||
const GURL& request_url,
|
||||
content::ResourceType resource_type,
|
||||
bool overridable,
|
||||
bool strict_enforcement,
|
||||
bool expired_previous_decision,
|
||||
const base::Callback<void(content::CertificateRequestResultType)>&
|
||||
@@ -356,7 +355,7 @@ void AtomBrowserClient::AllowCertificateError(
|
||||
if (delegate_) {
|
||||
delegate_->AllowCertificateError(
|
||||
web_contents, cert_error, ssl_info, request_url,
|
||||
resource_type, overridable, strict_enforcement,
|
||||
resource_type, strict_enforcement,
|
||||
expired_previous_decision, callback);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -69,7 +69,6 @@ class AtomBrowserClient : public brightray::BrowserClient,
|
||||
const net::SSLInfo& ssl_info,
|
||||
const GURL& request_url,
|
||||
content::ResourceType resource_type,
|
||||
bool overridable,
|
||||
bool strict_enforcement,
|
||||
bool expired_previous_decision,
|
||||
const base::Callback<void(content::CertificateRequestResultType)>&
|
||||
|
||||
Reference in New Issue
Block a user