| Index: net/http/http_network_transaction.cc
|
| ===================================================================
|
| --- net/http/http_network_transaction.cc (revision 53793)
|
| +++ net/http/http_network_transaction.cc (working copy)
|
| @@ -907,8 +907,11 @@
|
| return OK;
|
| }
|
|
|
| - if (result < 0 && !ssl_started)
|
| + if (result < 0 && !ssl_started) {
|
| + // A temporary CHECK for tracking down http://crbug.com/49862.
|
| + CHECK(!IsCertificateError(result));
|
| return ReconsiderProxyAfterError(result);
|
| + }
|
| establishing_tunnel_ = false;
|
|
|
| if (connection_->socket()) {
|
|
|