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

Unified Diff: chrome/browser/about_flags.cc

Issue 1716313002: [Herb] Set up field trial for UI prototypes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: startsWith Created 4 years, 10 months 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/about_flags.cc
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index 5188ee921cd656d81114e3ed780eb31d870e5283..bab1367e97df42de7e1a56eaa22653554044c7a1 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -528,15 +528,17 @@ const FeatureEntry::Choice kEnableOfflinePagesChoices[] = {
};
const FeatureEntry::Choice kHerbPrototypeChoices[] = {
- {IDS_GENERIC_EXPERIMENT_CHOICE_DISABLED, "", ""},
+ {IDS_GENERIC_EXPERIMENT_CHOICE_DEFAULT, "", ""},
+ {IDS_GENERIC_EXPERIMENT_CHOICE_DISABLED,
+ switches::kTabManagementExperimentTypeDisabled, ""},
{IDS_FLAGS_HERB_PROTOTYPE_FLAVOR_ANISE,
- switches::kTabManagementExperimentType, "anise"},
+ switches::kTabManagementExperimentTypeAnise, ""},
{IDS_FLAGS_HERB_PROTOTYPE_FLAVOR_BASIL,
- switches::kTabManagementExperimentType, "basil"},
+ switches::kTabManagementExperimentTypeBasil, ""},
{IDS_FLAGS_HERB_PROTOTYPE_FLAVOR_CHIVE,
- switches::kTabManagementExperimentType, "chive"},
+ switches::kTabManagementExperimentTypeChive, ""},
{IDS_FLAGS_HERB_PROTOTYPE_FLAVOR_DILL,
- switches::kTabManagementExperimentType, "dill"},
+ switches::kTabManagementExperimentTypeDill, ""},
};
#endif // defined(OS_ANDROID)
« no previous file with comments | « chrome/android/java/src/org/chromium/chrome/browser/util/FeatureUtilities.java ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698