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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
58 const char kDisableNetworkPortalNotification[] = | 58 const char kDisableNetworkPortalNotification[] = |
59 "disable-network-portal-notification"; | 59 "disable-network-portal-notification"; |
60 | 60 |
61 // Enables overriding the path for the default echo component extension. | 61 // Enables overriding the path for the default echo component extension. |
62 // Useful for testing. | 62 // Useful for testing. |
63 const char kEchoExtensionPath[] = "echo-ext-path"; | 63 const char kEchoExtensionPath[] = "echo-ext-path"; |
64 | 64 |
65 // Enables switching between different cellular carriers from the UI. | 65 // Enables switching between different cellular carriers from the UI. |
66 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; | 66 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; |
67 | 67 |
68 // Enables consumer management. | |
Dan Beam
2014/04/16 23:22:03
^ can you expand on this? i.e. the functional aff
davidyu
2014/04/17 01:14:55
Done.
| |
69 const char kEnableConsumerManagement[] = "enable-consumer-management"; | |
70 | |
68 // Enables notifications about captive portals in session. | 71 // Enables notifications about captive portals in session. |
69 const char kEnableNetworkPortalNotification[] = | 72 const char kEnableNetworkPortalNotification[] = |
70 "enable-network-portal-notification"; | 73 "enable-network-portal-notification"; |
71 | 74 |
72 // Enables touchpad three-finger-click as middle button. | 75 // Enables touchpad three-finger-click as middle button. |
73 const char kEnableTouchpadThreeFingerClick[] | 76 const char kEnableTouchpadThreeFingerClick[] |
74 = "enable-touchpad-three-finger-click"; | 77 = "enable-touchpad-three-finger-click"; |
75 | 78 |
76 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather | 79 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather |
77 // than the kiosk app mode. | 80 // than the kiosk app mode. |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
189 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 192 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
190 | 193 |
191 // Forces first-run UI to be shown for every login. | 194 // Forces first-run UI to be shown for every login. |
192 const char kForceFirstRunUI[] = "force-first-run-ui"; | 195 const char kForceFirstRunUI[] = "force-first-run-ui"; |
193 | 196 |
194 // Enables testing for auto update UI. | 197 // Enables testing for auto update UI. |
195 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 198 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
196 | 199 |
197 } // namespace switches | 200 } // namespace switches |
198 } // namespace chromeos | 201 } // namespace chromeos |
OLD | NEW |