Index: chrome/browser/renderer_host/resource_dispatcher_host.cc |
=================================================================== |
--- chrome/browser/renderer_host/resource_dispatcher_host.cc (revision 68959) |
+++ chrome/browser/renderer_host/resource_dispatcher_host.cc (working copy) |
@@ -1598,15 +1598,6 @@ |
return CertStore::GetSharedInstance()->StoreCert(request->ssl_info().cert, |
child_id); |
} |
- // If there is no SSL info attached to this request, we must either be a non |
- // secure request, or the request has been canceled or failed (before the SSL |
- // info was populated), or the response is an error (we have seen 403, 404, |
- // and 501) made up by the proxy. |
- DCHECK(!request->url().SchemeIsSecure() || |
- (request->status().status() == URLRequestStatus::CANCELED) || |
- (request->status().status() == URLRequestStatus::FAILED) || |
- ((request->response_headers()->response_code() >= 400) && |
- (request->response_headers()->response_code() <= 599))); |
return 0; |
} |