| Index: content/browser/ssl/ssl_manager.cc
|
| diff --git a/content/browser/ssl/ssl_manager.cc b/content/browser/ssl/ssl_manager.cc
|
| index 2f88040c714df9a420532eff09d97507b445887b..f12c929427c3f5706be013f2ec090439dc8cc79f 100644
|
| --- a/content/browser/ssl/ssl_manager.cc
|
| +++ b/content/browser/ssl/ssl_manager.cc
|
| @@ -25,7 +25,8 @@
|
| void SSLManager::OnSSLCertificateError(ResourceDispatcherHost* rdh,
|
| net::URLRequest* request,
|
| int cert_error,
|
| - net::X509Certificate* cert) {
|
| + const net::SSLInfo& ssl_info,
|
| + bool must_be_fatal) {
|
| DVLOG(1) << "OnSSLCertificateError() cert_error: " << cert_error
|
| << " url: " << request->url().spec();
|
|
|
| @@ -40,7 +41,8 @@ void SSLManager::OnSSLCertificateError(ResourceDispatcherHost* rdh,
|
| request,
|
| info->resource_type(),
|
| cert_error,
|
| - cert),
|
| + ssl_info,
|
| + must_be_fatal),
|
| &SSLCertErrorHandler::Dispatch));
|
| }
|
|
|
|
|