Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(336)

Unified Diff: net/http/http_response_headers.cc

Issue 3083: Use tr1/unordered_{map,set} instead of ext/hash_{map,set} in base/hash_tables.h (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 12 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/http/http_version.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_response_headers.cc
===================================================================
--- net/http/http_response_headers.cc (revision 2437)
+++ net/http/http_response_headers.cc (working copy)
@@ -453,8 +453,8 @@
raw_headers_ = "HTTP/1.0";
}
if (parsed_http_version_ != http_version_) {
- DLOG(INFO) << "assuming HTTP/" << http_version_.major() << "."
- << http_version_.minor();
+ DLOG(INFO) << "assuming HTTP/" << http_version_.major_version() << "."
+ << http_version_.minor_version();
}
// TODO(eroman): this doesn't make sense if ParseVersion failed.
« no previous file with comments | « no previous file | net/http/http_version.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698