| Index: net/url_request/url_request_job.cc
|
| diff --git a/net/url_request/url_request_job.cc b/net/url_request/url_request_job.cc
|
| index 47e38e96d91083c9d0d7bf51a11b95062167793c..2a23d61a5141eebcbe858f266f83d58a936b172e 100644
|
| --- a/net/url_request/url_request_job.cc
|
| +++ b/net/url_request/url_request_job.cc
|
| @@ -228,12 +228,12 @@ void URLRequestJob::NotifyCertificateRequested(
|
| request_->NotifyCertificateRequested(cert_request_info);
|
| }
|
|
|
| -void URLRequestJob::NotifySSLCertificateError(int cert_error,
|
| - X509Certificate* cert) {
|
| +void URLRequestJob::NotifySSLCertificateError(const SSLInfo& ssl_info,
|
| + bool is_hsts_host) {
|
| if (!request_)
|
| return; // The request was destroyed, so there is no more work to do.
|
|
|
| - request_->NotifySSLCertificateError(cert_error, cert);
|
| + request_->NotifySSLCertificateError(ssl_info, is_hsts_host);
|
| }
|
|
|
| bool URLRequestJob::CanGetCookies(const CookieList& cookie_list) const {
|
|
|