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

Unified Diff: net/socket/next_proto.h

Issue 1561203003: Remove SPDY/2 code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Re: #3. Created 4 years, 11 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_server_properties.cc ('k') | net/socket/ssl_client_socket.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 06f31ba749e2297eac8c4b2d1cdc4dcf5b0f0ecb..20c1a3522f3fa6d3785f47910eca87c593b8703a 100644
--- a/net/socket/next_proto.h
+++ b/net/socket/next_proto.h
@@ -18,15 +18,14 @@ namespace net {
// are used to collect statistics on UMA. Also, values must be in [0,499),
// because of the way TLS protocol negotiation extension information is added to
// UMA histogram.
+const int kProtoSPDYHistogramOffset = 100;
enum NextProto {
kProtoUnknown = 0,
kProtoHTTP11 = 1,
kProtoMinimumVersion = kProtoHTTP11,
- kProtoDeprecatedSPDY2 = 100,
- kProtoSPDYMinimumVersion = kProtoDeprecatedSPDY2,
- kProtoSPDYHistogramOffset = kProtoDeprecatedSPDY2,
kProtoSPDY3 = 101,
+ kProtoSPDYMinimumVersion = kProtoSPDY3,
kProtoSPDY31 = 102,
// kProtoHTTP2_14 = 103, // HTTP/2 draft-14
// kProtoHTTP2_15 = 104, // HTTP/2 draft-15
« no previous file with comments | « net/http/http_server_properties.cc ('k') | net/socket/ssl_client_socket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698