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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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, which allows user to enroll, remotely lock and | 68 // Enables consumer management, which allows user to enroll, remotely lock and |
69 // locate the device. | 69 // locate the device. |
70 const char kEnableConsumerManagement[] = "enable-consumer-management"; | 70 const char kEnableConsumerManagement[] = "enable-consumer-management"; |
71 | 71 |
72 // Enables MTP support in Files.app. | 72 // Enables MTP support in Files.app. |
73 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp"; | 73 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp"; |
74 | 74 |
| 75 // Enable explicit HID detection on OOBE. |
| 76 const char kEnableHIDDetectionOnOOBE[] = "enable-hid-detection-on-oobe"; |
| 77 |
75 // Enables notifications about captive portals in session. | 78 // Enables notifications about captive portals in session. |
76 const char kEnableNetworkPortalNotification[] = | 79 const char kEnableNetworkPortalNotification[] = |
77 "enable-network-portal-notification"; | 80 "enable-network-portal-notification"; |
78 | 81 |
79 // Enables touchpad three-finger-click as middle button. | 82 // Enables touchpad three-finger-click as middle button. |
80 const char kEnableTouchpadThreeFingerClick[] | 83 const char kEnableTouchpadThreeFingerClick[] |
81 = "enable-touchpad-three-finger-click"; | 84 = "enable-touchpad-three-finger-click"; |
82 | 85 |
83 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather | 86 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather |
84 // than the kiosk app mode. | 87 // than the kiosk app mode. |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 201 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
199 | 202 |
200 // Forces first-run UI to be shown for every login. | 203 // Forces first-run UI to be shown for every login. |
201 const char kForceFirstRunUI[] = "force-first-run-ui"; | 204 const char kForceFirstRunUI[] = "force-first-run-ui"; |
202 | 205 |
203 // Enables testing for auto update UI. | 206 // Enables testing for auto update UI. |
204 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 207 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
205 | 208 |
206 } // namespace switches | 209 } // namespace switches |
207 } // namespace chromeos | 210 } // namespace chromeos |
OLD | NEW |