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

Unified Diff: chrome/browser/net/http_pipelining_compatibility_client.cc

Issue 10170044: Expand pipelining trial to 100% of dev channel. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/http_pipelining_compatibility_client.cc
diff --git a/chrome/browser/net/http_pipelining_compatibility_client.cc b/chrome/browser/net/http_pipelining_compatibility_client.cc
index 0708404ef825933d4b1be9498083bbbf519dcc2b..5ba82008aa38b05db8d19629331ef2f272609bb8 100644
--- a/chrome/browser/net/http_pipelining_compatibility_client.cc
+++ b/chrome/browser/net/http_pipelining_compatibility_client.cc
@@ -462,15 +462,15 @@ void CollectPipeliningCapabilityStatsOnIOThread(
if (trial) {
return;
}
- // After April 21, 2012, the trial will disable itself.
+ // After May 4, 2012, the trial will disable itself.
trial = base::FieldTrialList::FactoryGetFieldTrial(
- kTrialName, kDivisor, "disable_test", 2012, 4, 21, NULL);
+ kTrialName, kDivisor, "disable_test", 2012, 5, 4, NULL);
chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
if (channel == chrome::VersionInfo::CHANNEL_CANARY) {
probability_to_run_test = 100;
} else if (channel == chrome::VersionInfo::CHANNEL_DEV) {
- probability_to_run_test = 10;
+ probability_to_run_test = 100;
}
int collect_stats_group = trial->AppendGroup("enable_test",
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698