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

Unified Diff: chrome/browser/io_thread.cc

Issue 2009403002: QUIC - added disable_delay_tcp_race field trial param to disable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2743
Patch Set: Created 4 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 | chrome/browser/io_thread_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/io_thread.cc
diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc
index 5d6949b978786da0d78f4bfb6481901a5a58e75a..60883cd7a02074e2433b8df1345cfefa7b33a960 100644
--- a/chrome/browser/io_thread.cc
+++ b/chrome/browser/io_thread.cc
@@ -1451,8 +1451,8 @@ int IOThread::NetworkSessionConfigurator::GetQuicSocketReceiveBufferSize(
// static
bool IOThread::NetworkSessionConfigurator::ShouldQuicDelayTcpRace(
const VariationParameters& quic_trial_params) {
- return base::LowerCaseEqualsASCII(
- GetVariationParam(quic_trial_params, "delay_tcp_race"), "true");
+ return !base::LowerCaseEqualsASCII(
+ GetVariationParam(quic_trial_params, "disable_delay_tcp_race"), "true");
}
// static
« no previous file with comments | « no previous file | chrome/browser/io_thread_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698