summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorjar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-22 16:35:32 +0000
committerjar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-22 16:35:32 +0000
commitea2b4208e01a8984ca5c28b887102a7ea5844668 (patch)
tree199d9646a3ffca0ad85abca6277b98d0e834da63 /chrome
parent597cceb53e5387141246e20a4fc196611e391046 (diff)
downloadchromium_src-ea2b4208e01a8984ca5c28b887102a7ea5844668.zip
chromium_src-ea2b4208e01a8984ca5c28b887102a7ea5844668.tar.gz
chromium_src-ea2b4208e01a8984ca5c28b887102a7ea5844668.tar.bz2
Make SDCH experiment significant on the dev channel population
The experiment was reduced to a low level to avoid impacing much of the standard release population. Now that we've adjusted the definition of the page-load-time metrics, I'd like to see the results of the experiment, and I need a larger participation rate to be visible on the dev channel. r=willchan Review URL: http://codereview.chromium.org/1162001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42222 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/browser_main.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/browser_main.cc b/chrome/browser/browser_main.cc
index 262397a..abf9cb5 100644
--- a/chrome/browser/browser_main.cc
+++ b/chrome/browser/browser_main.cc
@@ -930,8 +930,8 @@ int BrowserMain(const MainFunctionParams& parameters) {
// Perform A/B test to measure global impact of SDCH support.
// Set up a field trial to see what disabling SDCH does to latency of page
// layout globally.
- FieldTrial::Probability kSDCH_DIVISOR = 10000;
- FieldTrial::Probability kSDCH_DISABLE_PROBABILITY = 5; // 0.05% probability.
+ FieldTrial::Probability kSDCH_DIVISOR = 100;
+ FieldTrial::Probability kSDCH_DISABLE_PROBABILITY = 5; // 5% probability.
scoped_refptr<FieldTrial> sdch_trial =
new FieldTrial("GlobalSdch", kSDCH_DIVISOR);