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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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. Note this switch refers to retail mode rather | 103 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather |
104 // than the kiosk app mode. | 104 // than the kiosk app mode. |
105 const char kEnableKioskMode[] = "enable-kiosk-mode"; | 105 const char kEnableKioskMode[] = "enable-kiosk-mode"; |
106 | 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 | |
111 // Enables request of tablet site (via user agent override). | 107 // Enables request of tablet site (via user agent override). |
112 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; | 108 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; |
113 | 109 |
114 // Enables static ip configuration. This flag should be removed when it's on by | 110 // Enables static ip configuration. This flag should be removed when it's on by |
115 // default. | 111 // default. |
116 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; | 112 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; |
117 | 113 |
118 // Power of the power-of-2 initial modulus that will be used by the | 114 // Power of the power-of-2 initial modulus that will be used by the |
119 // auto-enrollment client. E.g. "4" means the modulus will be 2^4 = 16. | 115 // auto-enrollment client. E.g. "4" means the modulus will be 2^4 = 16. |
120 const char kEnterpriseEnrollmentInitialModulus[] = | 116 const char kEnterpriseEnrollmentInitialModulus[] = |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 // This option is for testing the chromeos build of chrome on the desktop only. | 182 // This option is for testing the chromeos build of chrome on the desktop only. |
187 const char kStubCrosSettings[] = "stub-cros-settings"; | 183 const char kStubCrosSettings[] = "stub-cros-settings"; |
188 | 184 |
189 // Enables usage of the new ManagedNetworkConfigurationHandler and | 185 // Enables usage of the new ManagedNetworkConfigurationHandler and |
190 // NetworkConfigurationHandler singletons. | 186 // NetworkConfigurationHandler singletons. |
191 const char kUseNewNetworkConfigurationHandlers[] = | 187 const char kUseNewNetworkConfigurationHandlers[] = |
192 "use-new-network-configuration-handlers"; | 188 "use-new-network-configuration-handlers"; |
193 | 189 |
194 } // namespace switches | 190 } // namespace switches |
195 } // namespace chromeos | 191 } // namespace chromeos |
OLD | NEW |