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

Unified Diff: net/socket/ssl_client_socket.cc

Issue 10005041: Remove SPDY 2.1 support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove references to deleted flags from chrome/browser Created 8 years, 8 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/socket/next_proto.h ('k') | net/socket/ssl_client_socket_pool.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_client_socket.cc
diff --git a/net/socket/ssl_client_socket.cc b/net/socket/ssl_client_socket.cc
index 9f49425ba4448bb520eaa074652d4878a3e842dc..77002d0a2977df367c22c453d90438079f9d17bb 100644
--- a/net/socket/ssl_client_socket.cc
+++ b/net/socket/ssl_client_socket.cc
@@ -24,8 +24,6 @@ NextProto SSLClientSocket::NextProtoFromString(
return kProtoSPDY1;
} else if (proto_string == "spdy/2") {
return kProtoSPDY2;
- } else if (proto_string == "spdy/2.1") {
- return kProtoSPDY21;
} else if (proto_string == "spdy/3") {
return kProtoSPDY3;
} else {
@@ -42,8 +40,6 @@ const char* SSLClientSocket::NextProtoToString(NextProto next_proto) {
return "spdy/1";
case kProtoSPDY2:
return "spdy/2";
- case kProtoSPDY21:
- return "spdy/2.1";
case kProtoSPDY3:
return "spdy/3";
default:
« no previous file with comments | « net/socket/next_proto.h ('k') | net/socket/ssl_client_socket_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698