| Index: chrome/android/java/src/org/chromium/chrome/browser/ChromeSwitches.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ChromeSwitches.java b/chrome/android/java/src/org/chromium/chrome/browser/ChromeSwitches.java
|
| index 06157fe62d83da33afb1d315b6c1833bf819e5f9..611624277340ea66fd1f1eccc88a7cff7b922430 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/ChromeSwitches.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/ChromeSwitches.java
|
| @@ -227,11 +227,20 @@ public abstract class ChromeSwitches {
|
| * Determines which of the Herb prototypes is being tested.
|
| * See about:flags for descriptions.
|
| */
|
| - public static final String HERB_FLAVOR = "tab-management-experiment-type";
|
| - public static final String HERB_FLAVOR_ANISE = "anise";
|
| - public static final String HERB_FLAVOR_BASIL = "basil";
|
| - public static final String HERB_FLAVOR_CHIVE = "chive";
|
| - public static final String HERB_FLAVOR_DILL = "dill";
|
| + public static final String HERB_FLAVOR_DISABLED_SWITCH =
|
| + "tab-management-experiment-type-disabled";
|
| + public static final String HERB_FLAVOR_ANISE_SWITCH = "tab-management-experiment-type-anise";
|
| + public static final String HERB_FLAVOR_BASIL_SWITCH = "tab-management-experiment-type-basil";
|
| + public static final String HERB_FLAVOR_CHIVE_SWITCH = "tab-management-experiment-type-chive";
|
| + public static final String HERB_FLAVOR_DILL_SWITCH = "tab-management-experiment-type-dill";
|
| +
|
| + public static final String HERB_FLAVOR_DEFAULT = "Default";
|
| + public static final String HERB_FLAVOR_CONTROL = "Control";
|
| + public static final String HERB_FLAVOR_DISABLED = "Disabled";
|
| + public static final String HERB_FLAVOR_ANISE = "Anise";
|
| + public static final String HERB_FLAVOR_BASIL = "Basil";
|
| + public static final String HERB_FLAVOR_CHIVE = "Chive";
|
| + public static final String HERB_FLAVOR_DILL = "Dill";
|
|
|
| /**
|
| * Enable tab switcher in document mode (merged tabs and apps option).
|
|
|