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

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

Issue 10867091: [net] Re-enable async DNS field trial (on canary only) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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/async_dns_field_trial.cc
diff --git a/chrome/browser/net/async_dns_field_trial.cc b/chrome/browser/net/async_dns_field_trial.cc
index b37028c905fe4c12ec5673cb8b6069f519d6c3c3..215ffdcf3a147b1c862b33aacffabe1b435c4876 100644
--- a/chrome/browser/net/async_dns_field_trial.cc
+++ b/chrome/browser/net/async_dns_field_trial.cc
@@ -18,9 +18,9 @@ bool ConfigureAsyncDnsFieldTrial() {
const base::FieldTrial::Probability kAsyncDnsDivisor = 100;
base::FieldTrial::Probability enabled_probability = 0;
- // TODO(szym): bring the probability up after fixing http://crbug.com/121085
- if (chrome::VersionInfo::GetChannel() <= chrome::VersionInfo::CHANNEL_DEV)
- enabled_probability = 0;
+ // TODO(szym): expand to DEV channel after fixing http://crbug.com/121085
+ if (chrome::VersionInfo::GetChannel() <= chrome::VersionInfo::CHANNEL_CANARY)
+ enabled_probability = 50;
scoped_refptr<base::FieldTrial> trial(
base::FieldTrialList::FactoryGetFieldTrial(
« 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