From da1e204fa55509cbb95fa215e53824b37ef54077 Mon Sep 17 00:00:00 2001 From: "rvargas@google.com" Date: Thu, 7 May 2009 01:25:01 +0000 Subject: Add two more error codes to net. BUG=9952 TEST=none Review URL: http://codereview.chromium.org/115006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15488 0039d316-1c4b-4281-b951-d872f2087c98 --- net/base/net_error_list.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'net/base') diff --git a/net/base/net_error_list.h b/net/base/net_error_list.h index 30ab98e..6265895 100644 --- a/net/base/net_error_list.h +++ b/net/base/net_error_list.h @@ -243,5 +243,12 @@ NET_ERROR(REQUEST_RANGE_NOT_SATISFIABLE, -328) // The cache does not have the requested entry. NET_ERROR(CACHE_MISS, -400) +// Unable to read from the disk cache. +NET_ERROR(CACHE_READ_FAILURE, -401) + +// The network transaction factory of the cache was not able to create a new +// transaction. +NET_ERROR(CACHE_CANNOT_CREATE_NETWORK_TRANSACTION, -402) + // The server's response was insecure (e.g. there was a cert error). NET_ERROR(INSECURE_RESPONSE, -501) -- cgit v1.1