AllowCertificateError no longer sends overridable
This commit is contained in:
parent
7f50c3d08e
commit
fb55db665c
4 changed files with 1 additions and 5 deletions
|
@ -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)>&
|
||||
|
|
Loading…
Reference in a new issue