Chromium Code Reviews| Index: chrome/browser/about_flags.cc |
| diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc |
| index a8ffdc201296e3a34510dcd7fb1e06a9adff7d48..339ba8b1756756038fd8c1767f6f27275b4e0227 100644 |
| --- a/chrome/browser/about_flags.cc |
| +++ b/chrome/browser/about_flags.cc |
| @@ -401,6 +401,14 @@ const Experiment::Choice kTouchScrollingModeChoices[] = { |
| switches::kTouchScrollingModeSyncTouchmove }, |
| }; |
| +const Experiment::Choice kEnableAppListFoldersChoices[] = { |
| + { IDS_GENERIC_EXPERIMENT_CHOICE_DEFAULT, "", "" }, |
| + { IDS_GENERIC_EXPERIMENT_CHOICE_ENABLED, |
| + app_list::switches::kEnableFolderUI, "" }, |
| + { IDS_GENERIC_EXPERIMENT_CHOICE_DISABLED, |
| + app_list::switches::kDisableFolderUI, "" }, |
| +}; |
| + |
| // RECORDING USER METRICS FOR FLAGS: |
| // ----------------------------------------------------------------------------- |
| // The first line of the experiment is the internal name. If you'd like to |
| @@ -1531,11 +1539,11 @@ const Experiment kExperiments[] = { |
| }, |
| #endif |
| { |
| - "disable-app-list-folder-ui", |
| - IDS_FLAGS_DISABLE_APP_LIST_FOLDER, |
| - IDS_FLAGS_DISABLE_APP_LIST_FOLDER_DESCRIPTION, |
| + "app-list-folder-ui", |
| + IDS_FLAGS_ENABLE_APP_LIST_FOLDER, |
| + IDS_FLAGS_ENABLE_APP_LIST_FOLDER_DESCRIPTION, |
| kOsWin | kOsLinux | kOsCrOS, |
|
tapted
2014/04/02 04:32:08
drive-by: This should be kOsAll. Otherwise when it
calamity
2014/04/02 04:53:53
Done.
|
| - SINGLE_VALUE_TYPE(app_list::switches::kDisableFolderUI) |
| + MULTI_VALUE_TYPE(kEnableAppListFoldersChoices) |
| }, |
| { |
| "disable-app-list-voice-search", |