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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; | 47 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; |
48 | 48 |
49 // Disables new Kiosk UI when kiosk apps are represented as user pods. | 49 // Disables new Kiosk UI when kiosk apps are represented as user pods. |
50 const char kDisableNewKioskUI[] = "disable-new-kiosk-ui"; | 50 const char kDisableNewKioskUI[] = "disable-new-kiosk-ui"; |
51 | 51 |
52 // Disable Quickoffice component app thus handlers won't be registered so | 52 // Disable Quickoffice component app thus handlers won't be registered so |
53 // it will be possible to install another version as normal app for testing. | 53 // it will be possible to install another version as normal app for testing. |
54 const char kDisableQuickofficeComponentApp[] = | 54 const char kDisableQuickofficeComponentApp[] = |
55 "disable-quickoffice-component-app"; | 55 "disable-quickoffice-component-app"; |
56 | 56 |
| 57 // Disables rollback option on reset screen. |
| 58 const char kDisableRollbackOption[] = "disable-rollback-option"; |
| 59 |
57 // Disables volume adjust sound. | 60 // Disables volume adjust sound. |
58 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; | 61 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; |
59 | 62 |
60 // Disables notifications about captive portals in session. | 63 // Disables notifications about captive portals in session. |
61 const char kDisableNetworkPortalNotification[] = | 64 const char kDisableNetworkPortalNotification[] = |
62 "disable-network-portal-notification"; | 65 "disable-network-portal-notification"; |
63 | 66 |
64 // Enables switching between different cellular carriers from the UI. | 67 // Enables switching between different cellular carriers from the UI. |
65 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; | 68 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; |
66 | 69 |
(...skipping 23 matching lines...) Expand all Loading... |
90 "enable-network-portal-notification"; | 93 "enable-network-portal-notification"; |
91 | 94 |
92 // Enables touchpad three-finger-click as middle button. | 95 // Enables touchpad three-finger-click as middle button. |
93 const char kEnableTouchpadThreeFingerClick[] | 96 const char kEnableTouchpadThreeFingerClick[] |
94 = "enable-touchpad-three-finger-click"; | 97 = "enable-touchpad-three-finger-click"; |
95 | 98 |
96 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather | 99 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather |
97 // than the kiosk app mode. | 100 // than the kiosk app mode. |
98 const char kEnableKioskMode[] = "enable-kiosk-mode"; | 101 const char kEnableKioskMode[] = "enable-kiosk-mode"; |
99 | 102 |
100 // Enables rollback option for resetting ChromeOS. | |
101 const char kEnableRollbackOption[] = "enable-rollback-option"; | |
102 | |
103 // Enables request of tablet site (via user agent override). | 103 // Enables request of tablet site (via user agent override). |
104 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; | 104 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; |
105 | 105 |
106 // Whether to enable forced enterprise re-enrollment. | 106 // Whether to enable forced enterprise re-enrollment. |
107 const char kEnterpriseEnableForcedReEnrollment[] = | 107 const char kEnterpriseEnableForcedReEnrollment[] = |
108 "enterprise-enable-forced-re-enrollment"; | 108 "enterprise-enable-forced-re-enrollment"; |
109 | 109 |
110 // Power of the power-of-2 initial modulus that will be used by the | 110 // Power of the power-of-2 initial modulus that will be used by the |
111 // auto-enrollment client. E.g. "4" means the modulus will be 2^4 = 16. | 111 // auto-enrollment client. E.g. "4" means the modulus will be 2^4 = 16. |
112 const char kEnterpriseEnrollmentInitialModulus[] = | 112 const char kEnterpriseEnrollmentInitialModulus[] = |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 221 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
222 | 222 |
223 // Forces first-run UI to be shown for every login. | 223 // Forces first-run UI to be shown for every login. |
224 const char kForceFirstRunUI[] = "force-first-run-ui"; | 224 const char kForceFirstRunUI[] = "force-first-run-ui"; |
225 | 225 |
226 // Enables testing for auto update UI. | 226 // Enables testing for auto update UI. |
227 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 227 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
228 | 228 |
229 } // namespace switches | 229 } // namespace switches |
230 } // namespace chromeos | 230 } // namespace chromeos |
OLD | NEW |