summaryrefslogtreecommitdiffstats
path: root/net/base
diff options
context:
space:
mode:
authoragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-12 19:43:00 +0000
committeragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-12 19:43:00 +0000
commit6a621f50a408501f2ea89b4f33440f5598b13694 (patch)
tree54432431288d859a503dfb39ee79f4aa2ad27ccf /net/base
parent52884af44a0cf90730f564145e4e39adac8edcde (diff)
downloadchromium_src-6a621f50a408501f2ea89b4f33440f5598b13694.zip
chromium_src-6a621f50a408501f2ea89b4f33440f5598b13694.tar.gz
chromium_src-6a621f50a408501f2ea89b4f33440f5598b13694.tar.bz2
net: use IsSecureScheme rather than matching "https".
My r202927 matched against a scheme of "https" in order to be consistent with the other users in the same file. But it appears that IsSecureScheme is the better answer throughout the file. BUG=244260 Review URL: https://chromiumcodereview.appspot.com/16776005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205898 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base')
-rw-r--r--net/base/net_error_list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/base/net_error_list.h b/net/base/net_error_list.h
index fa68713..46d310f 100644
--- a/net/base/net_error_list.h
+++ b/net/base/net_error_list.h
@@ -537,7 +537,7 @@ NET_ERROR(INCOMPLETE_CHUNKED_ENCODING, -355)
NET_ERROR(QUIC_PROTOCOL_ERROR, -356)
// The HTTP headers were truncated by an EOF.
-NET_ERROR(HEADERS_TRUNCATED, -357)
+NET_ERROR(RESPONSE_HEADERS_TRUNCATED, -357)
// The cache does not have the requested entry.
NET_ERROR(CACHE_MISS, -400)