Update for changed APIs

Update AllowCertificateError API (c5b8df91d1)
This commit is contained in:
Nitish Sakhawalkar 2019-05-13 14:24:39 -07:00
parent 1fa5bf0140
commit 941851b3eb
5 changed files with 7 additions and 7 deletions

View file

@ -557,14 +557,14 @@ void AtomBrowserClient::AllowCertificateError(
int cert_error,
const net::SSLInfo& ssl_info,
const GURL& request_url,
content::ResourceType resource_type,
bool is_main_frame_request,
bool strict_enforcement,
bool expired_previous_decision,
const base::Callback<void(content::CertificateRequestResultType)>&
callback) {
if (delegate_) {
delegate_->AllowCertificateError(
web_contents, cert_error, ssl_info, request_url, resource_type,
web_contents, cert_error, ssl_info, request_url, is_main_frame_request,
strict_enforcement, expired_previous_decision, callback);
}
}