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

Unified Diff: net/spdy/spdy_test_util_common.cc

Issue 2821463002: Disable HTTP/2 Alternative Services. (Closed)
Patch Set: Revert change in histogram logic. 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
« no previous file with comments | « net/spdy/spdy_test_util_common.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 6cb1d0c70d094c06fe41855c6de65e96a5ddcbea..d45a74e45114201028c5a1448e257a66debbddc0 100644
--- a/net/spdy/spdy_test_util_common.cc
+++ b/net/spdy/spdy_test_util_common.cc
@@ -347,7 +347,7 @@ SpdySessionDependencies::SpdySessionDependencies(
enable_server_push_cancellation(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),
@@ -413,8 +413,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;
« no previous file with comments | « 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