Index: net/http/http_stream_request.cc |
=================================================================== |
--- net/http/http_stream_request.cc (revision 57134) |
+++ net/http/http_stream_request.cc (working copy) |
@@ -36,7 +36,7 @@ |
return original_url.ReplaceComponents(replacements); |
} |
-} |
+} // namespace |
vandebo (ex-Chrome)
2010/08/24 19:59:35
Is this an intentional change?
wtc
2010/08/24 22:40:18
Yes, I ran cpplint.py on the whole file and it war
|
HttpStreamRequest::HttpStreamRequest( |
HttpStreamFactory* factory, |
@@ -620,11 +620,8 @@ |
return OK; |
} |
- if (result < 0 && !ssl_started) { |
- // A temporary CHECK for tracking down http://crbug.com/49862. |
- CHECK(!IsCertificateError(result)); |
+ if (result < 0 && !ssl_started) |
return ReconsiderProxyAfterError(result); |
- } |
establishing_tunnel_ = false; |
if (connection_->socket()) { |