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

Unified Diff: net/http/http_version.h

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 | « net/http/http_response_headers.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_version.h
===================================================================
--- net/http/http_version.h (revision 2437)
+++ net/http/http_version.h (working copy)
@@ -22,12 +22,12 @@
HttpVersion(uint16 major, uint16 minor) : value(major << 16 | minor) { }
// Major version number.
- uint16 major() const {
+ uint16 major_version() const {
return value >> 16;
}
// Minor version number.
- uint16 minor() const {
+ uint16 minor_version() const {
return value & 0xffff;
}
« no previous file with comments | « net/http/http_response_headers.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698