diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-12 19:43:00 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-12 19:43:00 +0000 |
commit | 6a621f50a408501f2ea89b4f33440f5598b13694 (patch) | |
tree | 54432431288d859a503dfb39ee79f4aa2ad27ccf /net/base | |
parent | 52884af44a0cf90730f564145e4e39adac8edcde (diff) | |
download | chromium_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.h | 2 |
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) |