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

Unified Diff: net/socket/ssl_client_socket.cc

Issue 9618002: SPDY - integration of spdy/3 code. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 9 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/net.gyp ('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
===================================================================
--- net/socket/ssl_client_socket.cc (revision 126086)
+++ net/socket/ssl_client_socket.cc (working copy)
@@ -25,6 +25,8 @@
return kProtoSPDY2;
} else if (proto_string == "spdy/2.1") {
return kProtoSPDY21;
+ } else if (proto_string == "spdy/3") {
+ return kProtoSPDY3;
} else {
return kProtoUnknown;
}
@@ -41,6 +43,8 @@
return "spdy/2";
case kProtoSPDY21:
return "spdy/2.1";
+ case kProtoSPDY3:
+ return "spdy/3";
default:
break;
}
« no previous file with comments | « net/net.gyp ('k') | net/socket/ssl_client_socket_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698