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

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: rebase Created 8 years 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 | chrome/browser/history/scored_history_match.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 705e7977c4d423c8389397f9924db32a2f3ac978..912f9b9a4e6b2011eb52cfeec0a379ee40e5b071 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";
@@ -43,11 +44,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.
@@ -166,10 +167,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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698