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

Unified Diff: net/socket/next_proto.h

Issue 17760008: [SPDY] Enable tests for SPDY/3.1 and SPDY/4 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 7 years, 6 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_stream_factory_impl.cc ('k') | net/spdy/spdy_http_stream_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/next_proto.h
diff --git a/net/socket/next_proto.h b/net/socket/next_proto.h
index 32fbff7aec3edf90722d6f7c8a36893c290d2fa6..04ecc0f6270df52eb9e56bea4c1938a1ec87e05e 100644
--- a/net/socket/next_proto.h
+++ b/net/socket/next_proto.h
@@ -14,6 +14,7 @@ namespace net {
enum NextProto {
kProtoUnknown = 0,
kProtoHTTP11 = 1,
+ kProtoMinimumVersion = kProtoHTTP11,
kProtoSPDY1 = 2,
kProtoSPDYMinimumVersion = kProtoSPDY1,
@@ -24,7 +25,7 @@ enum NextProto {
kProtoSPDY4a2 = 7,
kProtoSPDYMaximumVersion = kProtoSPDY4a2,
- kProtoMaximumVersion = 7,
+ kProtoMaximumVersion = kProtoSPDYMaximumVersion,
};
} // namespace net
« no previous file with comments | « net/http/http_stream_factory_impl.cc ('k') | net/spdy/spdy_http_stream_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698