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

Unified Diff: chrome/browser/about_flags.cc

Issue 212223012: Disable app list folders by default for non-ChromeOS platforms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | ui/app_list/app_list_switches.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/about_flags.cc
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index a8ffdc201296e3a34510dcd7fb1e06a9adff7d48..1cb6fec8c27cfd5bde17727f2400c4ca5f39f5b7 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -1530,13 +1530,23 @@ const Experiment kExperiments[] = {
SINGLE_VALUE_TYPE(switches::kEnableAppList)
},
#endif
+#if defined(OS_CHROMEOS)
benwells 2014/04/02 03:59:58 Why guard this in #if, it is already guarded with
calamity 2014/04/02 04:23:17 Similar reason to --enable-app-list above. It woul
{
"disable-app-list-folder-ui",
IDS_FLAGS_DISABLE_APP_LIST_FOLDER,
IDS_FLAGS_DISABLE_APP_LIST_FOLDER_DESCRIPTION,
- kOsWin | kOsLinux | kOsCrOS,
+ kOsCrOS,
SINGLE_VALUE_TYPE(app_list::switches::kDisableFolderUI)
},
+#else
+ {
+ "enable-app-list-folder-ui",
+ IDS_FLAGS_ENABLE_APP_LIST_FOLDER,
+ IDS_FLAGS_ENABLE_APP_LIST_FOLDER_DESCRIPTION,
+ kOsWin | kOsLinux,
+ SINGLE_VALUE_TYPE(app_list::switches::kEnableFolderUI)
+ },
+#endif
{
"disable-app-list-voice-search",
IDS_FLAGS_DISABLE_APP_LIST_VOICE_SEARCH,
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | ui/app_list/app_list_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698