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

Unified Diff: net/http/http_proxy_client_socket_pool_unittest.cc

Issue 9252029: SPDY - default to SPDY/2.1 protocol in unittests (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync with trunk Created 8 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_pipelined_host_impl_unittest.cc ('k') | net/http/http_server_properties_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_proxy_client_socket_pool_unittest.cc
===================================================================
--- net/http/http_proxy_client_socket_pool_unittest.cc (revision 119306)
+++ net/http/http_proxy_client_socket_pool_unittest.cc (working copy)
@@ -176,9 +176,9 @@
void InitializeSpdySsl() {
spdy::SpdyFramer::set_enable_compression_default(false);
ssl_data_->next_proto_status = SSLClientSocket::kNextProtoNegotiated;
- ssl_data_->next_proto = "spdy/2";
+ ssl_data_->next_proto = "spdy/2.1";
ssl_data_->was_npn_negotiated = true;
- ssl_data_->protocol_negotiated = SSLClientSocket::kProtoSPDY2;
+ ssl_data_->protocol_negotiated = SSLClientSocket::kProtoSPDY21;
}
HttpNetworkSession* CreateNetworkSession() {
« no previous file with comments | « net/http/http_pipelined_host_impl_unittest.cc ('k') | net/http/http_server_properties_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698