OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ui/app_list/app_list_switches.h" | 5 #include "ui/app_list/app_list_switches.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 | 8 |
9 namespace app_list { | 9 namespace app_list { |
10 namespace switches { | 10 namespace switches { |
11 | 11 |
12 // If set, the app info context menu item is not available in the app list UI. | 12 // If set, the app info context menu item is not available in the app list UI. |
13 const char kDisableAppInfo[] = "disable-app-list-app-info"; | 13 const char kDisableAppInfo[] = "disable-app-list-app-info"; |
14 | 14 |
15 // Disables syncing of the app list independent of extensions. | 15 // Disables syncing of the app list independent of extensions. |
16 const char kDisableSyncAppList[] = "disable-sync-app-list"; | 16 const char kDisableSyncAppList[] = "disable-sync-app-list"; |
17 | 17 |
18 // If set, the voice search is disabled in app list UI. | |
19 const char kDisableVoiceSearch[] = "disable-app-list-voice-search"; | |
20 | |
21 // If set, the app list will be centered and wide instead of tall. | 18 // If set, the app list will be centered and wide instead of tall. |
22 const char kEnableCenteredAppList[] = "enable-centered-app-list"; | 19 const char kEnableCenteredAppList[] = "enable-centered-app-list"; |
23 | 20 |
24 // If set, Drive apps of the user shows side-by-side with Chrome apps. | 21 // If set, Drive apps of the user shows side-by-side with Chrome apps. |
25 const char kEnableDriveAppsInAppList[] = "enable-drive-apps-in-app-list"; | 22 const char kEnableDriveAppsInAppList[] = "enable-drive-apps-in-app-list"; |
26 | 23 |
27 // If set, the experimental app list will be used. Implies | 24 // If set, the experimental app list will be used. Implies |
28 // --enable-centered-app-list. | 25 // --enable-centered-app-list. |
29 const char kEnableExperimentalAppList[] = "enable-experimental-app-list"; | 26 const char kEnableExperimentalAppList[] = "enable-experimental-app-list"; |
30 | 27 |
(...skipping 13 matching lines...) Expand all Loading... |
44 return false; // Folder UI not implemented for Cocoa. | 41 return false; // Folder UI not implemented for Cocoa. |
45 #endif | 42 #endif |
46 // Folder UI is available only when AppList sync is enabled, and should | 43 // Folder UI is available only when AppList sync is enabled, and should |
47 // not be disabled separately. | 44 // not be disabled separately. |
48 return IsAppListSyncEnabled(); | 45 return IsAppListSyncEnabled(); |
49 } | 46 } |
50 | 47 |
51 bool IsVoiceSearchEnabled() { | 48 bool IsVoiceSearchEnabled() { |
52 // Speech recognition in AppList is only for ChromeOS right now. | 49 // Speech recognition in AppList is only for ChromeOS right now. |
53 #if defined(OS_CHROMEOS) | 50 #if defined(OS_CHROMEOS) |
54 return !CommandLine::ForCurrentProcess()->HasSwitch(kDisableVoiceSearch); | 51 return true; |
55 #else | 52 #else |
56 return false; | 53 return false; |
57 #endif | 54 #endif |
58 } | 55 } |
59 | 56 |
60 bool IsAppInfoEnabled() { | 57 bool IsAppInfoEnabled() { |
61 #if defined(TOOLKIT_VIEWS) | 58 #if defined(TOOLKIT_VIEWS) |
62 return !CommandLine::ForCurrentProcess()->HasSwitch(kDisableAppInfo); | 59 return !CommandLine::ForCurrentProcess()->HasSwitch(kDisableAppInfo); |
63 #else | 60 #else |
64 return false; | 61 return false; |
65 #endif | 62 #endif |
66 } | 63 } |
67 | 64 |
68 bool IsExperimentalAppListEnabled() { | 65 bool IsExperimentalAppListEnabled() { |
69 return CommandLine::ForCurrentProcess()->HasSwitch( | 66 return CommandLine::ForCurrentProcess()->HasSwitch( |
70 kEnableExperimentalAppList); | 67 kEnableExperimentalAppList); |
71 } | 68 } |
72 | 69 |
73 bool IsCenteredAppListEnabled() { | 70 bool IsCenteredAppListEnabled() { |
74 return CommandLine::ForCurrentProcess()->HasSwitch(kEnableCenteredAppList) || | 71 return CommandLine::ForCurrentProcess()->HasSwitch(kEnableCenteredAppList) || |
75 IsExperimentalAppListEnabled(); | 72 IsExperimentalAppListEnabled(); |
76 } | 73 } |
77 | 74 |
78 bool IsDriveAppsInAppListEnabled() { | 75 bool IsDriveAppsInAppListEnabled() { |
79 return CommandLine::ForCurrentProcess()->HasSwitch(kEnableDriveAppsInAppList); | 76 return CommandLine::ForCurrentProcess()->HasSwitch(kEnableDriveAppsInAppList); |
80 } | 77 } |
81 | 78 |
82 } // namespace switches | 79 } // namespace switches |
83 } // namespace app_list | 80 } // namespace app_list |
OLD | NEW |