| 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. |
| 13 const char kDisableAppInfo[] = "disable-app-list-app-info"; |
| 14 |
| 12 // Disables syncing of the app list independent of extensions. | 15 // Disables syncing of the app list independent of extensions. |
| 13 const char kDisableSyncAppList[] = "disable-sync-app-list"; | 16 const char kDisableSyncAppList[] = "disable-sync-app-list"; |
| 14 | 17 |
| 15 // If set, the voice search is disabled in app list UI. | 18 // If set, the voice search is disabled in app list UI. |
| 16 const char kDisableVoiceSearch[] = "disable-app-list-voice-search"; | 19 const char kDisableVoiceSearch[] = "disable-app-list-voice-search"; |
| 17 | 20 |
| 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"; | |
| 20 | |
| 21 // If set, the app list will be centered and wide instead of tall. | 21 // If set, the app list will be centered and wide instead of tall. |
| 22 const char kEnableCenteredAppList[] = "enable-centered-app-list"; | 22 const char kEnableCenteredAppList[] = "enable-centered-app-list"; |
| 23 | 23 |
| 24 // If set, the experimental app list will be used. Implies | 24 // If set, the experimental app list will be used. Implies |
| 25 // --enable-centered-app-list. | 25 // --enable-centered-app-list. |
| 26 const char kEnableExperimentalAppList[] = "enable-experimental-app-list"; | 26 const char kEnableExperimentalAppList[] = "enable-experimental-app-list"; |
| 27 | 27 |
| 28 // Enables syncing of the app list independent of extensions. | 28 // Enables syncing of the app list independent of extensions. |
| 29 const char kEnableSyncAppList[] = "enable-sync-app-list"; | 29 const char kEnableSyncAppList[] = "enable-sync-app-list"; |
| 30 | 30 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 48 bool IsVoiceSearchEnabled() { | 48 bool IsVoiceSearchEnabled() { |
| 49 // Speech recognition in AppList is only for ChromeOS right now. | 49 // Speech recognition in AppList is only for ChromeOS right now. |
| 50 #if defined(OS_CHROMEOS) | 50 #if defined(OS_CHROMEOS) |
| 51 return !CommandLine::ForCurrentProcess()->HasSwitch(kDisableVoiceSearch); | 51 return !CommandLine::ForCurrentProcess()->HasSwitch(kDisableVoiceSearch); |
| 52 #else | 52 #else |
| 53 return false; | 53 return false; |
| 54 #endif | 54 #endif |
| 55 } | 55 } |
| 56 | 56 |
| 57 bool IsAppInfoEnabled() { | 57 bool IsAppInfoEnabled() { |
| 58 return CommandLine::ForCurrentProcess()->HasSwitch(kEnableAppInfo); | 58 return !CommandLine::ForCurrentProcess()->HasSwitch(kDisableAppInfo); |
| 59 } | 59 } |
| 60 | 60 |
| 61 bool IsExperimentalAppListEnabled() { | 61 bool IsExperimentalAppListEnabled() { |
| 62 return CommandLine::ForCurrentProcess()->HasSwitch( | 62 return CommandLine::ForCurrentProcess()->HasSwitch( |
| 63 kEnableExperimentalAppList); | 63 kEnableExperimentalAppList); |
| 64 } | 64 } |
| 65 | 65 |
| 66 bool IsCenteredAppListEnabled() { | 66 bool IsCenteredAppListEnabled() { |
| 67 return CommandLine::ForCurrentProcess()->HasSwitch(kEnableCenteredAppList) || | 67 return CommandLine::ForCurrentProcess()->HasSwitch(kEnableCenteredAppList) || |
| 68 IsExperimentalAppListEnabled(); | 68 IsExperimentalAppListEnabled(); |
| 69 } | 69 } |
| 70 | 70 |
| 71 } // namespace switches | 71 } // namespace switches |
| 72 } // namespace app_list | 72 } // namespace app_list |
| OLD | NEW |