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

Unified Diff: net/spdy/spdy_test_util_common.cc

Issue 2821463002: Disable HTTP/2 Alternative Services. (Closed)
Patch Set: Fix //jingle/glue/. Created 3 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
Index: net/spdy/spdy_test_util_common.cc
diff --git a/net/spdy/spdy_test_util_common.cc b/net/spdy/spdy_test_util_common.cc
index a7df8406b60ad04b7683c04ebf5f60020ce25567..031be19c0976758330632e4ea0b32239727f778f 100644
--- a/net/spdy/spdy_test_util_common.cc
+++ b/net/spdy/spdy_test_util_common.cc
@@ -346,7 +346,7 @@ SpdySessionDependencies::SpdySessionDependencies(
enable_quic(false),
session_max_recv_window_size(kDefaultInitialWindowSize),
time_func(&base::TimeTicks::Now),
- enable_http2_alternative_service_with_different_host(false),
+ enable_http2_alternative_service(false),
net_log(nullptr),
http_09_on_non_default_ports_enabled(false),
restrict_to_one_preconnect_for_proxies(false),
@@ -410,8 +410,8 @@ HttpNetworkSession::Params SpdySessionDependencies::CreateSessionParams(
params.http2_settings = session_deps->http2_settings;
params.time_func = session_deps->time_func;
params.proxy_delegate = session_deps->proxy_delegate.get();
- params.enable_http2_alternative_service_with_different_host =
- session_deps->enable_http2_alternative_service_with_different_host;
+ params.enable_http2_alternative_service =
+ session_deps->enable_http2_alternative_service;
params.net_log = session_deps->net_log;
params.http_09_on_non_default_ports_enabled =
session_deps->http_09_on_non_default_ports_enabled;
« net/http/http_stream_factory_impl_job_controller.cc ('K') | « net/spdy/spdy_test_util_common.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698