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

Unified Diff: chrome/browser/about_flags.cc

Issue 15675008: Add enable-app-launcher-shim to chrome://flags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 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;

Powered by Google App Engine
This is Rietveld 408576698