From 3648709349a7426fddfd5982d0b0158b47af8c97 Mon Sep 17 00:00:00 2001 From: "sreeram@chromium.org" Date: Fri, 2 Sep 2011 07:37:53 +0000 Subject: 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 --- chrome/browser/instant/instant_field_trial.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'chrome/browser') 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 -- cgit v1.1