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

Unified Diff: net/http/http_network_session.cc

Issue 2873243004: Do not mark QUIC as bad on network change events (Closed)
Patch Set: Created 3 years, 7 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_network_session.h ('k') | net/http/http_stream_factory_impl_job_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_network_session.cc
diff --git a/net/http/http_network_session.cc b/net/http/http_network_session.cc
index 8aa8a2954485277f045017bc7aa8b0e1f041e6da..92dc232b40587ca163636b2ea86bbbd25ab840a5 100644
--- a/net/http/http_network_session.cc
+++ b/net/http/http_network_session.cc
@@ -142,7 +142,6 @@ HttpNetworkSession::Params::Params()
quic_force_hol_blocking(false),
quic_race_cert_verification(false),
quic_do_not_fragment(false),
- quic_do_not_mark_as_broken_on_network_change(false),
quic_estimate_initial_rtt(false),
proxy_delegate(nullptr),
enable_token_binding(false),
@@ -346,8 +345,6 @@ std::unique_ptr<base::Value> HttpNetworkSession::QuicInfoToValue() const {
dict->SetBoolean("allow_server_migration",
params_.quic_allow_server_migration);
dict->SetBoolean("do_not_fragment", params_.quic_do_not_fragment);
- dict->SetBoolean("do_not_mark_as_broken_on_network_change",
- params_.quic_do_not_mark_as_broken_on_network_change);
dict->SetBoolean("estimate_initial_rtt", params_.quic_estimate_initial_rtt);
dict->SetBoolean("force_hol_blocking", params_.quic_force_hol_blocking);
« no previous file with comments | « net/http/http_network_session.h ('k') | net/http/http_stream_factory_impl_job_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698