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

Unified Diff: chrome/browser/autocomplete/autocomplete_field_trial.cc

Issue 11416285: Omnibiox: Tweak HQP New Scoring and Re-Enable Field Trial (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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
Index: chrome/browser/autocomplete/autocomplete_field_trial.cc
diff --git a/chrome/browser/autocomplete/autocomplete_field_trial.cc b/chrome/browser/autocomplete/autocomplete_field_trial.cc
index edde0cf4036ba54dee21e2d0e9336da9e804bb1f..31191b662b5bf8709529e406ea3783d71d84554e 100644
--- a/chrome/browser/autocomplete/autocomplete_field_trial.cc
+++ b/chrome/browser/autocomplete/autocomplete_field_trial.cc
@@ -21,7 +21,8 @@ static const char kDisallowInlineHQPFieldTrialName[] =
// was created as part of the name.
static const char kSuggestFieldTrialStarted2012Q4Name[] =
"OmniboxSearchSuggestTrialStarted2012Q4";
-static const char kHQPNewScoringFieldTrialName[] = "OmniboxHQPNewScoring";
+static const char kHQPNewScoringFieldTrialName[] =
+ "OmniboxHQPNewScoringMax1400";
static const char kHUPCullRedirectsFieldTrialName[] = "OmniboxHUPCullRedirects";
static const char kHUPCreateShorterMatchFieldTrialName[] =
"OmniboxHUPCreateShorterMatch";
@@ -41,11 +42,11 @@ const base::FieldTrial::Probability
// will decide what behavior (if any) to change based on the group.
const int kSuggestFieldTrialNumberOfGroups = 20;
-// For History Quick Provider new scoring field trial, put 0% ( = 0/100 )
+// For History Quick Provider new scoring field trial, put 25% ( = 25/100 )
// of the users in the new scoring experiment group.
const base::FieldTrial::Probability kHQPNewScoringFieldTrialDivisor = 100;
const base::FieldTrial::Probability
- kHQPNewScoringFieldTrialExperimentFraction = 0;
+ kHQPNewScoringFieldTrialExperimentFraction = 25;
// For HistoryURL provider cull redirects field trial, put 0% ( = 0/100 )
// of the users in the don't-cull-redirects experiment group.
@@ -153,10 +154,10 @@ void AutocompleteFieldTrial::Activate() {
trial->group();
// Create inline History Quick Provider new scoring field trial.
- // Make it expire on January 14, 2013.
+ // Make it expire on April 14, 2013.
trial = base::FieldTrialList::FactoryGetFieldTrial(
kHQPNewScoringFieldTrialName, kHQPNewScoringFieldTrialDivisor,
- "Standard", 2013, 1, 14, NULL);
+ "Standard", 2013, 4, 14, NULL);
trial->UseOneTimeRandomization();
hqp_new_scoring_experiment_group = trial->AppendGroup("NewScoring",
kHQPNewScoringFieldTrialExperimentFraction);
« no previous file with comments | « no previous file | chrome/browser/history/scored_history_match.h » ('j') | chrome/browser/history/scored_history_match.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698