diff options
Diffstat (limited to 'net/url_request/url_request.cc')
-rw-r--r-- | net/url_request/url_request.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/url_request/url_request.cc b/net/url_request/url_request.cc index 1a87fdf..3db51b4 100644 --- a/net/url_request/url_request.cc +++ b/net/url_request/url_request.cc @@ -838,9 +838,9 @@ void URLRequest::NotifyCertificateRequested( } void URLRequest::NotifySSLCertificateError(const SSLInfo& ssl_info, - bool is_hsts_host) { + bool fatal) { if (delegate_) - delegate_->OnSSLCertificateError(this, ssl_info, is_hsts_host); + delegate_->OnSSLCertificateError(this, ssl_info, fatal); } bool URLRequest::CanGetCookies(const CookieList& cookie_list) const { |