Commit 44f9260b authored by bnc's avatar bnc Committed by Commit bot

Disable Alt-Svc in Crnet.

Alt-Svc is currently disabled in Cronet (in
components/cronet/android/*url_request_context_adapter.cc), until this feature
is thorougly tested in Chromium.  It should also be disabled in Crnet.

Review URL: https://codereview.chromium.org/1643463004

Cr-Commit-Position: refs/heads/master@{#371903}
parent da4f79fe
...@@ -438,7 +438,7 @@ void CrNetEnvironment::InitializeOnNetworkThread() { ...@@ -438,7 +438,7 @@ void CrNetEnvironment::InitializeOnNetworkThread() {
params.net_log = main_context_->net_log(); params.net_log = main_context_->net_log();
params.next_protos = params.next_protos =
net::NextProtosWithSpdyAndQuic(spdy_enabled(), quic_enabled()); net::NextProtosWithSpdyAndQuic(spdy_enabled(), quic_enabled());
params.use_alternative_services = true; params.use_alternative_services = false;
params.enable_quic = quic_enabled(); params.enable_quic = quic_enabled();
params.alternative_service_probability_threshold = params.alternative_service_probability_threshold =
alternate_protocol_threshold_; alternate_protocol_threshold_;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment