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

Unified Diff: net/socket/ssl_client_socket.cc

Issue 2365243004: QUIC/1+SPYD/3 => QUIC (Closed)
Patch Set: Rebase. Created 4 years, 2 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
« net/http/http_response_info.cc ('K') | « net/socket/next_proto.h ('k') | no next file » | 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 52146afabd1fd6afc83b3134149641f1ea1689e5..a2e62264ed1868ca9642d43f3a99033a4920e9bd 100644
--- a/net/socket/ssl_client_socket.cc
+++ b/net/socket/ssl_client_socket.cc
@@ -35,7 +35,7 @@ NextProto SSLClientSocket::NextProtoFromString(base::StringPiece proto_string) {
} else if (proto_string == "h2") {
return kProtoHTTP2;
} else if (proto_string == "quic/1+spdy/3") {
Ryan Hamilton 2016/10/19 23:07:52 (And here and below). Weird that we have these st
Bence 2016/10/20 12:22:50 Indeed. From e-mail thread consensus it seems lik
- return kProtoQUIC1SPDY3;
+ return kProtoQUIC;
} else {
return kProtoUnknown;
}
@@ -48,7 +48,7 @@ const char* SSLClientSocket::NextProtoToString(NextProto next_proto) {
return "http/1.1";
case kProtoHTTP2:
return "h2";
- case kProtoQUIC1SPDY3:
+ case kProtoQUIC:
return "quic/1+spdy/3";
case kProtoUnknown:
break;
« net/http/http_response_info.cc ('K') | « net/socket/next_proto.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698