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, folder will be disabled in app list UI. | 12 // Disables syncing of the app list independent of extensions. |
13 const char kDisableFolderUI[] = "disable-app-list-folder-ui"; | 13 const char kDisableSyncAppList[] = "disable-sync-app-list"; |
14 | 14 |
15 // If set, the voice search is disabled in app list UI. | 15 // If set, the voice search is disabled in app list UI. |
16 const char kDisableVoiceSearch[] = "disable-app-list-voice-search"; | 16 const char kDisableVoiceSearch[] = "disable-app-list-voice-search"; |
17 | 17 |
18 // If set, the app info context menu item is available in the app list UI. | 18 // If set, the app info context menu item is available in the app list UI. |
19 const char kEnableAppInfo[] = "enable-app-list-app-info"; | 19 const char kEnableAppInfo[] = "enable-app-list-app-info"; |
20 | 20 |
21 // If set, the experimental app list will be used. | 21 // If set, the experimental app list will be used. |
22 const char kEnableExperimentalAppList[] = "enable-experimental-app-list"; | 22 const char kEnableExperimentalAppList[] = "enable-experimental-app-list"; |
23 | 23 |
24 // If set, the experimental app list position will be used. | 24 // If set, the experimental app list position will be used. |
25 const char kEnableExperimentalAppListPosition[] = | 25 const char kEnableExperimentalAppListPosition[] = |
26 "enable-experimental-app-list-position"; | 26 "enable-experimental-app-list-position"; |
27 | 27 |
28 // If set, it will always listen to the audio locally and open the app-list | 28 // If set, it will always listen to the audio locally and open the app-list |
29 // when the hotword is recognized. | 29 // when the hotword is recognized. |
30 const char kEnableHotwordAlwaysOn[] = "enable-app-list-hotword-always-on"; | 30 const char kEnableHotwordAlwaysOn[] = "enable-app-list-hotword-always-on"; |
31 | 31 |
32 // Folder UI is enabled by default. | 32 // Enables syncing of the app list independent of extensions. |
33 bool IsFolderUIEnabled() { | 33 const char kEnableSyncAppList[] = "enable-sync-app-list"; |
34 #if !defined(OS_MACOSX) | 34 |
35 return !CommandLine::ForCurrentProcess()->HasSwitch(kDisableFolderUI); | 35 bool IsAppListSyncEnabled() { |
| 36 #if defined(OS_CHROMEOS) |
| 37 return !CommandLine::ForCurrentProcess()->HasSwitch(kDisableSyncAppList); |
36 #else | 38 #else |
37 return false; | 39 return CommandLine::ForCurrentProcess()->HasSwitch(kEnableSyncAppList); |
38 #endif | 40 #endif |
39 } | 41 } |
40 | 42 |
| 43 bool IsFolderUIEnabled() { |
| 44 #if defined(OS_MACOSX) |
| 45 return false; // Folder UI not implemented for OSX |
| 46 #endif |
| 47 // Folder UI is available only when AppList sync is enabled, and should |
| 48 // not be disabled separately. |
| 49 return IsAppListSyncEnabled(); |
| 50 } |
| 51 |
41 bool IsVoiceSearchEnabled() { | 52 bool IsVoiceSearchEnabled() { |
42 // Speech recognition in AppList is only for ChromeOS right now. | 53 // Speech recognition in AppList is only for ChromeOS right now. |
43 #if defined(OS_CHROMEOS) | 54 #if defined(OS_CHROMEOS) |
44 return !CommandLine::ForCurrentProcess()->HasSwitch(kDisableVoiceSearch); | 55 return !CommandLine::ForCurrentProcess()->HasSwitch(kDisableVoiceSearch); |
45 #else | 56 #else |
46 return false; | 57 return false; |
47 #endif | 58 #endif |
48 } | 59 } |
49 | 60 |
50 bool IsHotwordAlwaysOnEnabled() { | 61 bool IsHotwordAlwaysOnEnabled() { |
(...skipping 15 matching lines...) Expand all Loading... |
66 } | 77 } |
67 | 78 |
68 bool IsExperimentalAppListPositionEnabled() { | 79 bool IsExperimentalAppListPositionEnabled() { |
69 return CommandLine::ForCurrentProcess()->HasSwitch( | 80 return CommandLine::ForCurrentProcess()->HasSwitch( |
70 kEnableExperimentalAppListPosition) || | 81 kEnableExperimentalAppListPosition) || |
71 IsExperimentalAppListEnabled(); | 82 IsExperimentalAppListEnabled(); |
72 } | 83 } |
73 | 84 |
74 } // namespace switches | 85 } // namespace switches |
75 } // namespace app_list | 86 } // namespace app_list |
OLD | NEW |