summaryrefslogtreecommitdiffstats
path: root/chrome/browser/instant
diff options
context:
space:
mode:
authorsreeram@chromium.org <sreeram@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-02 07:37:53 +0000
committersreeram@chromium.org <sreeram@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-02 07:37:53 +0000
commit3648709349a7426fddfd5982d0b0158b47af8c97 (patch)
tree44fced5bd596193518ff703960ed0f208c0d10aa /chrome/browser/instant
parentc30a6040a16df040bce8008bd5b8b8f9c9f15068 (diff)
downloadchromium_src-3648709349a7426fddfd5982d0b0158b47af8c97.zip
chromium_src-3648709349a7426fddfd5982d0b0158b47af8c97.tar.gz
chromium_src-3648709349a7426fddfd5982d0b0158b47af8c97.tar.bz2
Lower Instant field trial percentage.
Lower the field trial percentage from 10% to 1% for the stable channel. Once this CL has been merged to the M14 branch, I'll revert it, so that it's back to 10% for dev and canary users. BUG=91807 TEST=none Review URL: http://codereview.chromium.org/7828030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99335 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/instant')
-rw-r--r--chrome/browser/instant/instant_field_trial.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/instant/instant_field_trial.cc b/chrome/browser/instant/instant_field_trial.cc
index 7cbf61e..65c6a44 100644
--- a/chrome/browser/instant/instant_field_trial.cc
+++ b/chrome/browser/instant/instant_field_trial.cc
@@ -31,10 +31,10 @@ void InstantFieldTrial::Activate() {
return;
trial->UseOneTimeRandomization();
- g_control_group_id_1 = trial->AppendGroup("InstantControl1", 450); // 45%
- g_control_group_id_2 = trial->AppendGroup("InstantControl2", 450); // 45%
- g_experiment_group_id_1 = trial->AppendGroup("InstantExperiment1", 50); // 5%
- g_experiment_group_id_2 = trial->AppendGroup("InstantExperiment2", 50); // 5%
+ g_control_group_id_1 = trial->AppendGroup("InstantControl1", 495);
+ g_control_group_id_2 = trial->AppendGroup("InstantControl2", 495);
+ g_experiment_group_id_1 = trial->AppendGroup("InstantExperiment1", 5);
+ g_experiment_group_id_2 = trial->AppendGroup("InstantExperiment2", 5);
}
// static