AllowCertificateError no longer sends overridable

This commit is contained in:
Samuel Attard 2017-12-18 11:13:03 +11:00 committed by Aleksei Kuzmin
parent 7f50c3d08e
commit fb55db665c
4 changed files with 1 additions and 5 deletions

View file

@ -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);
}
}