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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 const char kEnableStubInteractive[] = "enable-stub-interactive"; | 93 const char kEnableStubInteractive[] = "enable-stub-interactive"; |
94 | 94 |
95 // Enables touchpad three-finger-click as middle button. | 95 // Enables touchpad three-finger-click as middle button. |
96 const char kEnableTouchpadThreeFingerClick[] | 96 const char kEnableTouchpadThreeFingerClick[] |
97 = "enable-touchpad-three-finger-click"; | 97 = "enable-touchpad-three-finger-click"; |
98 | 98 |
99 // Enables touchpad three-finger swipe. | 99 // Enables touchpad three-finger swipe. |
100 const char kEnableTouchpadThreeFingerSwipe[] | 100 const char kEnableTouchpadThreeFingerSwipe[] |
101 = "enable-touchpad-three-finger-swipe"; | 101 = "enable-touchpad-three-finger-swipe"; |
102 | 102 |
103 // Enable Kiosk mode for ChromeOS. | 103 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather |
| 104 // than the kiosk app mode. |
104 const char kEnableKioskMode[] = "enable-kiosk-mode"; | 105 const char kEnableKioskMode[] = "enable-kiosk-mode"; |
105 | 106 |
| 107 // Enable kiosk app settings UI. |
| 108 // TODO(xiyuan): Remove this flag after http://crbug.com/228860. |
| 109 const char kEnableKioskAppSettings[] = "enable-kiosk-app-settings"; |
| 110 |
106 // Enables request of tablet site (via user agent override). | 111 // Enables request of tablet site (via user agent override). |
107 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; | 112 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; |
108 | 113 |
109 // Enables static ip configuration. This flag should be removed when it's on by | 114 // Enables static ip configuration. This flag should be removed when it's on by |
110 // default. | 115 // default. |
111 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; | 116 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; |
112 | 117 |
113 // Power of the power-of-2 initial modulus that will be used by the | 118 // Power of the power-of-2 initial modulus that will be used by the |
114 // auto-enrollment client. E.g. "4" means the modulus will be 2^4 = 16. | 119 // auto-enrollment client. E.g. "4" means the modulus will be 2^4 = 16. |
115 const char kEnterpriseEnrollmentInitialModulus[] = | 120 const char kEnterpriseEnrollmentInitialModulus[] = |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 // Indicates that a stub implementation of CrosSettings that stores settings in | 194 // Indicates that a stub implementation of CrosSettings that stores settings in |
190 // memory without signing should be used, treating current user as the owner. | 195 // memory without signing should be used, treating current user as the owner. |
191 // This option is for testing the chromeos build of chrome on the desktop only. | 196 // This option is for testing the chromeos build of chrome on the desktop only. |
192 const char kStubCrosSettings[] = "stub-cros-settings"; | 197 const char kStubCrosSettings[] = "stub-cros-settings"; |
193 | 198 |
194 // Enables usage of the new ManagedNetworkConfigurationHandler and | 199 // Enables usage of the new ManagedNetworkConfigurationHandler and |
195 // NetworkConfigurationHandler singletons. | 200 // NetworkConfigurationHandler singletons. |
196 const char kUseNewNetworkConfigurationHandlers[] = | 201 const char kUseNewNetworkConfigurationHandlers[] = |
197 "use-new-network-configuration-handlers"; | 202 "use-new-network-configuration-handlers"; |
198 | 203 |
199 } // namespace switches | 204 } // namespace switches |
200 } // namespace chromeos | 205 } // namespace chromeos |
OLD | NEW |