summaryrefslogtreecommitdiffstats
path: root/net/base
diff options
context:
space:
mode:
authorericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-18 23:01:31 +0000
committerericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-18 23:01:31 +0000
commit95ca0dbd7c9792b7390d4577e94f3b4c55929a5b (patch)
tree16b35ffafb5019f41b4939bf8f6a153f219d2592 /net/base
parentd0d98329ebf165472c5142765fbe441d98f980af (diff)
downloadchromium_src-95ca0dbd7c9792b7390d4577e94f3b4c55929a5b.zip
chromium_src-95ca0dbd7c9792b7390d4577e94f3b4c55929a5b.tar.gz
chromium_src-95ca0dbd7c9792b7390d4577e94f3b4c55929a5b.tar.bz2
change error value
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1005 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base')
-rw-r--r--net/base/net_error_list.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/base/net_error_list.h b/net/base/net_error_list.h
index 62696be..bc9c12b 100644
--- a/net/base/net_error_list.h
+++ b/net/base/net_error_list.h
@@ -60,9 +60,6 @@ NET_ERROR(FILE_TOO_BIG, -8)
// invalid assumption.
NET_ERROR(UNEXPECTED, -9)
-// Error in chunked transfer encoding.
-NET_ERROR(BAD_CHUNKED_ENCODING, -10)
-
// A connection was closed (corresponding to a TCP FIN).
NET_ERROR(CONNECTION_CLOSED, -100)
@@ -214,6 +211,9 @@ NET_ERROR(UNSAFE_PORT, -312)
// The server's response was invalid.
NET_ERROR(INVALID_RESPONSE, -320)
+// Error in chunked transfer encoding.
+NET_ERROR(INVALID_CHUNKED_ENCODING, -321)
+
// The cache does not have the requested entry.
NET_ERROR(CACHE_MISS, -400)