summaryrefslogtreecommitdiffstats
path: root/net/http
diff options
context:
space:
mode:
Diffstat (limited to 'net/http')
-rw-r--r--net/http/http_response_headers.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/net/http/http_response_headers.cc b/net/http/http_response_headers.cc
index f39d4fe..bc7ac62 100644
--- a/net/http/http_response_headers.cc
+++ b/net/http/http_response_headers.cc
@@ -931,10 +931,8 @@ bool HttpResponseHeaders::IsKeepAlive() const {
// meaningful when we don't know that this response was from a proxy, but
// Mozilla also does this, so we'll do the same.
std::string connection_val;
- // TODO(wtc): A temporary change to look for "proxy-connection" before
- // "connection" for debugging http://crbug.com/8325.
- if (!EnumerateHeader(NULL, "proxy-connection", &connection_val))
- EnumerateHeader(NULL, "connection", &connection_val);
+ if (!EnumerateHeader(NULL, "connection", &connection_val))
+ EnumerateHeader(NULL, "proxy-connection", &connection_val);
bool keep_alive;