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

Unified Diff: components/network_session_configurator/network_session_configurator.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 | « no previous file | net/http/http_network_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/network_session_configurator/network_session_configurator.cc
diff --git a/components/network_session_configurator/network_session_configurator.cc b/components/network_session_configurator/network_session_configurator.cc
index b06afa19760fd7222b968093a564d90e02de1c5e..e885f4ae8091eecf7eb52973953e9fc7a7712cd9 100644
--- a/components/network_session_configurator/network_session_configurator.cc
+++ b/components/network_session_configurator/network_session_configurator.cc
@@ -219,14 +219,6 @@ bool ShouldQuicAllowServerMigration(
"true");
}
-bool ShouldQuicDoNotMarkAsBrokenOnNetworkChange(
- const VariationParameters& quic_trial_params) {
- return base::LowerCaseEqualsASCII(
- GetVariationParam(quic_trial_params,
- "do_not_mark_as_broken_on_network_change"),
- "true");
-}
-
size_t GetQuicMaxPacketLength(const VariationParameters& quic_trial_params) {
unsigned value;
if (base::StringToUint(
@@ -302,8 +294,6 @@ void ConfigureQuicParams(base::StringPiece quic_trial_group,
ShouldQuicMigrateSessionsEarly(quic_trial_params);
params->quic_allow_server_migration =
ShouldQuicAllowServerMigration(quic_trial_params);
- params->quic_do_not_mark_as_broken_on_network_change =
- ShouldQuicDoNotMarkAsBrokenOnNetworkChange(quic_trial_params);
}
size_t max_packet_length = GetQuicMaxPacketLength(quic_trial_params);
« no previous file with comments | « no previous file | net/http/http_network_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698