| 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 064bc0cef2bca9c134a54c8dfb27b8d804fbeee1..2a1a9b5169a999d93c02fd6eb9d846cea7721f32 100644
|
| --- a/content/browser/renderer_host/resource_dispatcher_host.cc
|
| +++ b/content/browser/renderer_host/resource_dispatcher_host.cc
|
| @@ -1309,10 +1309,10 @@ void ResourceDispatcherHost::OnCertificateRequested(
|
|
|
| void ResourceDispatcherHost::OnSSLCertificateError(
|
| net::URLRequest* request,
|
| - int cert_error,
|
| - net::X509Certificate* cert) {
|
| + const net::SSLInfo& ssl_info,
|
| + bool is_hsts_host) {
|
| DCHECK(request);
|
| - SSLManager::OnSSLCertificateError(this, request, cert_error, cert);
|
| + SSLManager::OnSSLCertificateError(this, request, ssl_info, is_hsts_host);
|
| }
|
|
|
| bool ResourceDispatcherHost::CanGetCookies(
|
|
|