summaryrefslogtreecommitdiffstats
path: root/net/http/http_stream_request.cc
diff options
context:
space:
mode:
authoreroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-16 20:53:01 +0000
committereroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-16 20:53:01 +0000
commitf7fcceefed4e4817f3fca6fdd2156136662ae39b (patch)
tree49f5d7736c5031f1a7036182f623cacfe6014186 /net/http/http_stream_request.cc
parent92c6d20388d078771d35a56cfa4b54e080df40d0 (diff)
downloadchromium_src-f7fcceefed4e4817f3fca6fdd2156136662ae39b.zip
chromium_src-f7fcceefed4e4817f3fca6fdd2156136662ae39b.tar.gz
chromium_src-f7fcceefed4e4817f3fca6fdd2156136662ae39b.tar.bz2
Add a new net error code for when the load failure was due to connecting to a bad proxy server.
Prior to this change, users would likely have seen one of these errors on failure to connect through a proxy server: ERR_NAME_NOT_RESOLVED ERR_ADDRESS_UNREACHABLE ERR_CONNECTION_REFUSED ERR_CONNECTION_TIMED_OUT ERR_CONNECTION_FAILED Whereas now any host resolve or tcp connect error will map to: ERR_PROXY_UNREACHABLE This error code will allow selecting a more suitable error page. BUG=53477 Review URL: http://codereview.chromium.org/3360025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59710 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_stream_request.cc')
-rw-r--r--net/http/http_stream_request.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/http/http_stream_request.cc b/net/http/http_stream_request.cc
index 09bedbc..64110a7 100644
--- a/net/http/http_stream_request.cc
+++ b/net/http/http_stream_request.cc
@@ -839,6 +839,7 @@ int HttpStreamRequest::ReconsiderProxyAfterError(int error) {
// now exists that corresponds to a proxy server that could load the URL.
//
switch (error) {
+ case ERR_PROXY_CONNECTION_FAILED:
case ERR_NAME_NOT_RESOLVED:
case ERR_INTERNET_DISCONNECTED:
case ERR_ADDRESS_UNREACHABLE: