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 18 matching lines...) Expand all Loading... |
29 | 29 |
30 // Disables wallpaper boot animation (except of OOBE case). | 30 // Disables wallpaper boot animation (except of OOBE case). |
31 const char kDisableBootAnimation[] = "disable-boot-animation"; | 31 const char kDisableBootAnimation[] = "disable-boot-animation"; |
32 | 32 |
33 // Disables the ChromeOS demo. | 33 // Disables the ChromeOS demo. |
34 const char kDisableDemoMode[] = "disable-demo-mode"; | 34 const char kDisableDemoMode[] = "disable-demo-mode"; |
35 | 35 |
36 // Disable Genius App and use the original Help App instead. | 36 // Disable Genius App and use the original Help App instead. |
37 const char kDisableGeniusApp[] = "disable-genius-app"; | 37 const char kDisableGeniusApp[] = "disable-genius-app"; |
38 | 38 |
| 39 // Disable HID-detection OOBE screen. |
| 40 const char kDisableHIDDetectionOnOOBE[] = "disable-hid-detection-on-oobe"; |
| 41 |
39 // Avoid doing expensive animations upon login. | 42 // Avoid doing expensive animations upon login. |
40 const char kDisableLoginAnimations[] = "disable-login-animations"; | 43 const char kDisableLoginAnimations[] = "disable-login-animations"; |
41 | 44 |
42 // Disable login/lock UI (user pods) scrolling into view on JS side when virtual | 45 // Disable login/lock UI (user pods) scrolling into view on JS side when virtual |
43 // keyboard is shown. | 46 // keyboard is shown. |
44 const char kDisableLoginScrollIntoView[] = "disable-login-scroll-into-view"; | 47 const char kDisableLoginScrollIntoView[] = "disable-login-scroll-into-view"; |
45 | 48 |
46 // Disable new channel switcher UI. | 49 // Disable new channel switcher UI. |
47 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; | 50 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; |
48 | 51 |
(...skipping 29 matching lines...) Expand all Loading... |
78 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint | 81 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint |
79 // of GAIA. | 82 // of GAIA. |
80 const char kEnableEmbeddedSignin[] = "enable-embedded-signin"; | 83 const char kEnableEmbeddedSignin[] = "enable-embedded-signin"; |
81 | 84 |
82 // Enabled sharing assets for installed default apps. | 85 // Enabled sharing assets for installed default apps. |
83 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing"; | 86 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing"; |
84 | 87 |
85 // Enables MTP support in Files.app. | 88 // Enables MTP support in Files.app. |
86 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp"; | 89 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp"; |
87 | 90 |
88 // Enable explicit HID detection on OOBE. | |
89 const char kEnableHIDDetectionOnOOBE[] = "enable-hid-detection-on-oobe"; | |
90 | |
91 // Enables notifications about captive portals in session. | 91 // Enables notifications about captive portals in session. |
92 const char kEnableNetworkPortalNotification[] = | 92 const char kEnableNetworkPortalNotification[] = |
93 "enable-network-portal-notification"; | 93 "enable-network-portal-notification"; |
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 // 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 |
100 // than the kiosk app mode. | 100 // than the kiosk app mode. |
(...skipping 120 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 |