Chromium Code Reviews| Index: chrome/browser/about_flags.cc |
| diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc |
| index b06be7348cdfcacdbec32746b3f23bf9e32b9b77..d803450125ed8018f1dacb2991edef4225c7c46f 100644 |
| --- a/chrome/browser/about_flags.cc |
| +++ b/chrome/browser/about_flags.cc |
| @@ -1463,6 +1463,17 @@ const Experiment kExperiments[] = { |
| kOsAll, |
| SINGLE_VALUE_TYPE(switches::kEnableResetProfileSettings) |
| }, |
| +#if defined(OS_MACOSX) |
| + { |
| + "enable-app-list-shim", |
| + IDS_FLAGS_ENABLE_APP_LIST_SHIM_NAME, |
| + IDS_FLAGS_ENABLE_APP_LIST_SHIM_DESCRIPTION, |
| + kOsMac, |
| + ENABLE_DISABLE_VALUE_TYPE_AND_VALUE( |
| + switches::kEnableAppListShim, "1", |
|
benwells
2013/05/29 06:33:38
I don't remember the windows one being so complica
tapted
2013/05/29 06:37:24
The rationale for doing it this way is that it avo
|
| + switches::kEnableAppListShim, "0") |
| + }, |
| +#endif |
| }; |
| const Experiment* experiments = kExperiments; |