| Index: content/browser/renderer_host/resource_dispatcher_host.cc
|
| diff --git a/content/browser/renderer_host/resource_dispatcher_host.cc b/content/browser/renderer_host/resource_dispatcher_host.cc
|
| index 381378582d08afc9f4ecc86f0e5dc3b05700b7d5..0e29353b9b3a3f755c9a157178bcea4e93841dc7 100644
|
| --- a/content/browser/renderer_host/resource_dispatcher_host.cc
|
| +++ b/content/browser/renderer_host/resource_dispatcher_host.cc
|
| @@ -1308,9 +1308,11 @@ void ResourceDispatcherHost::OnCertificateRequested(
|
| void ResourceDispatcherHost::OnSSLCertificateError(
|
| net::URLRequest* request,
|
| int cert_error,
|
| - net::X509Certificate* cert) {
|
| + const net::SSLInfo& ssl_info,
|
| + bool must_be_fatal) {
|
| DCHECK(request);
|
| - SSLManager::OnSSLCertificateError(this, request, cert_error, cert);
|
| + SSLManager::OnSSLCertificateError(this, request, cert_error, ssl_info,
|
| + must_be_fatal);
|
| }
|
|
|
| bool ResourceDispatcherHost::CanGetCookies(
|
|
|