| 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..6d758531645f0048b4ee64ee3b21b4d955e1d018 100644
|
| --- a/net/url_request/url_request_job.cc
|
| +++ b/net/url_request/url_request_job.cc
|
| @@ -229,11 +229,12 @@ void URLRequestJob::NotifyCertificateRequested(
|
| }
|
|
|
| void URLRequestJob::NotifySSLCertificateError(int cert_error,
|
| - X509Certificate* cert) {
|
| + const SSLInfo& ssl_info,
|
| + bool must_be_fatal) {
|
| if (!request_)
|
| return; // The request was destroyed, so there is no more work to do.
|
|
|
| - request_->NotifySSLCertificateError(cert_error, cert);
|
| + request_->NotifySSLCertificateError(cert_error, ssl_info, must_be_fatal);
|
| }
|
|
|
| bool URLRequestJob::CanGetCookies(const CookieList& cookie_list) const {
|
|
|