OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chromeos/chromeos_switches.h" | 5 #include "chromeos/chromeos_switches.h" |
6 | 6 |
7 namespace chromeos { | 7 namespace chromeos { |
8 namespace switches { | 8 namespace switches { |
9 | 9 |
10 // Path for app's OEM manifest file. | 10 // Path for app's OEM manifest file. |
(...skipping 20 matching lines...) Expand all Loading... |
31 const char kDisableBootAnimation[] = "disable-boot-animation"; | 31 const char kDisableBootAnimation[] = "disable-boot-animation"; |
32 | 32 |
33 // Disables Chrome Captive Portal detector, which initiates Captive | 33 // Disables Chrome Captive Portal detector, which initiates Captive |
34 // Portal detection for new active networks. | 34 // Portal detection for new active networks. |
35 const char kDisableChromeCaptivePortalDetector[] = | 35 const char kDisableChromeCaptivePortalDetector[] = |
36 "disable-chrome-captive-portal-detector"; | 36 "disable-chrome-captive-portal-detector"; |
37 | 37 |
38 // Disables Google Drive integration. | 38 // Disables Google Drive integration. |
39 const char kDisableDrive[] = "disable-drive"; | 39 const char kDisableDrive[] = "disable-drive"; |
40 | 40 |
| 41 // Disable Genius App and use the original Help App instead. |
| 42 const char kDisableGeniusApp[] = "disable-genius-app"; |
| 43 |
41 // Disable policy-configured local accounts. | 44 // Disable policy-configured local accounts. |
42 const char kDisableLocalAccounts[] = "disable-local-accounts"; | 45 const char kDisableLocalAccounts[] = "disable-local-accounts"; |
43 | 46 |
44 // Avoid doing expensive animations upon login. | 47 // Avoid doing expensive animations upon login. |
45 const char kDisableLoginAnimations[] = "disable-login-animations"; | 48 const char kDisableLoginAnimations[] = "disable-login-animations"; |
46 | 49 |
47 // Disable new channel switcher UI. | 50 // Disable new channel switcher UI. |
48 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; | 51 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; |
49 | 52 |
50 // Disable Quickoffice component app thus handlers won't be registered so | 53 // Disable Quickoffice component app thus handlers won't be registered so |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 "use-new-network-configuration-handlers"; | 199 "use-new-network-configuration-handlers"; |
197 | 200 |
198 // Disables user image sync. | 201 // Disables user image sync. |
199 const char kDisableUserImageSync[] = "disable-user-image-sync"; | 202 const char kDisableUserImageSync[] = "disable-user-image-sync"; |
200 | 203 |
201 // Enables new first-run overlay UI. | 204 // Enables new first-run overlay UI. |
202 const char kEnableFirstRunUI[] = "enable-first-run-ui"; | 205 const char kEnableFirstRunUI[] = "enable-first-run-ui"; |
203 | 206 |
204 } // namespace switches | 207 } // namespace switches |
205 } // namespace chromeos | 208 } // namespace chromeos |
OLD | NEW |