Skip to content
This repository was archived by the owner on Sep 25, 2019. It is now read-only.

Commit f7d7582

Browse files
[ntp] adjust values for link experiment.
this is the minimal change to always enable the footer link, and to never enable the [+] icon. Effectively this disables the field trial. BUG=126148 TEST=manual Review URL: http://codereview.chromium.org/10331016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@135258 0039d316-1c4b-4281-b951-d872f2087c98
1 parent 16023eb commit f7d7582

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chrome/browser/ui/webui/ntp/new_tab_ui.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,15 +288,15 @@ void NewTabUI::RegisterUserPrefs(PrefService* prefs) {
288288
void NewTabUI::SetupFieldTrials() {
289289
scoped_refptr<base::FieldTrial> trial(
290290
base::FieldTrialList::FactoryGetFieldTrial(
291-
kWebStoreLinkExperiment, 3, "Disabled", 2012, 6, 1, NULL));
291+
kWebStoreLinkExperiment, 1, "Disabled", 2025, 6, 1, NULL));
292292

293293
// Try to give the user a consistent experience, if possible.
294294
if (base::FieldTrialList::IsOneTimeRandomizationEnabled())
295295
trial->UseOneTimeRandomization();
296296

297297
// 33.3% in each group.
298298
g_footer_group = trial->AppendGroup("FooterLink", 1);
299-
g_hint_group = trial->AppendGroup("PlusIcon", 1);
299+
g_hint_group = trial->AppendGroup("PlusIcon", 0);
300300
}
301301

302302
// static

0 commit comments

Comments
 (0)