| Index: net/url_request/url_request.cc
|
| diff --git a/net/url_request/url_request.cc b/net/url_request/url_request.cc
|
| index 02667b5afe128d4eba237b2ecfc56c3dddff1767..b44465a2fc54699e2178d75e197cf1934f1302ad 100644
|
| --- a/net/url_request/url_request.cc
|
| +++ b/net/url_request/url_request.cc
|
| @@ -113,7 +113,8 @@ void URLRequest::Delegate::OnCertificateRequested(
|
|
|
| void URLRequest::Delegate::OnSSLCertificateError(URLRequest* request,
|
| int cert_error,
|
| - X509Certificate* cert) {
|
| + const SSLInfo& ssl_info,
|
| + bool must_be_fatal) {
|
| request->Cancel();
|
| }
|
|
|
| @@ -784,9 +785,10 @@ void URLRequest::NotifyCertificateRequested(
|
| }
|
|
|
| void URLRequest::NotifySSLCertificateError(int cert_error,
|
| - X509Certificate* cert) {
|
| + const SSLInfo& ssl_info,
|
| + bool must_be_fatal) {
|
| if (delegate_)
|
| - delegate_->OnSSLCertificateError(this, cert_error, cert);
|
| + delegate_->OnSSLCertificateError(this, cert_error, ssl_info, must_be_fatal);
|
| }
|
|
|
| bool URLRequest::CanGetCookies(const CookieList& cookie_list) const {
|
|
|