diff options
author | ericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-23 19:10:45 +0000 |
---|---|---|
committer | ericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-23 19:10:45 +0000 |
commit | 943c808476fc4ccea2175a4f76bc05346c53c209 (patch) | |
tree | ae0c1fe78fa44eeb238770a6051fc639885572f8 /net/base/net_error_list.h | |
parent | 45bdf86341670d95573acbc699f2d2998a25cf1d (diff) | |
download | chromium_src-943c808476fc4ccea2175a4f76bc05346c53c209.zip chromium_src-943c808476fc4ccea2175a4f76bc05346c53c209.tar.gz chromium_src-943c808476fc4ccea2175a4f76bc05346c53c209.tar.bz2 |
Add ProxyResolverV8 class.darin@chromium.org is the original author of 'proxy_resolver_v8.cc' and 'proxy_resolver_script.h'.
Review URL: http://codereview.chromium.org/21391
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10199 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/net_error_list.h')
-rw-r--r-- | net/base/net_error_list.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/base/net_error_list.h b/net/base/net_error_list.h index c472f54..c2722bd 100644 --- a/net/base/net_error_list.h +++ b/net/base/net_error_list.h @@ -227,9 +227,12 @@ NET_ERROR(RESPONSE_HEADERS_TOO_BIG, -325) // The PAC requested by HTTP did not have a valid status code (non-200). NET_ERROR(PAC_STATUS_NOT_OK, -326) +// The evaluation of the PAC script failed. +NET_ERROR(PAC_SCRIPT_FAILED, -327) + // The response was 401 (Unauthorized), yet the request was a CONNECT request // to a proxy. -NET_ERROR(UNEXPECTED_SERVER_AUTH, -327) +NET_ERROR(UNEXPECTED_SERVER_AUTH, -328) // The cache does not have the requested entry. NET_ERROR(CACHE_MISS, -400) |