| 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 | |
| 42 // Avoid doing expensive animations upon login. | 39 // Avoid doing expensive animations upon login. |
| 43 const char kDisableLoginAnimations[] = "disable-login-animations"; | 40 const char kDisableLoginAnimations[] = "disable-login-animations"; |
| 44 | 41 |
| 45 // Disable login/lock UI (user pods) scrolling into view on JS side when virtual | 42 // Disable login/lock UI (user pods) scrolling into view on JS side when virtual |
| 46 // keyboard is shown. | 43 // keyboard is shown. |
| 47 const char kDisableLoginScrollIntoView[] = "disable-login-scroll-into-view"; | 44 const char kDisableLoginScrollIntoView[] = "disable-login-scroll-into-view"; |
| 48 | 45 |
| 49 // Disable new channel switcher UI. | 46 // Disable new channel switcher UI. |
| 50 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; | 47 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; |
| 51 | 48 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 78 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint | 75 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint |
| 79 // of GAIA. | 76 // of GAIA. |
| 80 const char kEnableEmbeddedSignin[] = "enable-embedded-signin"; | 77 const char kEnableEmbeddedSignin[] = "enable-embedded-signin"; |
| 81 | 78 |
| 82 // Enabled sharing assets for installed default apps. | 79 // Enabled sharing assets for installed default apps. |
| 83 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing"; | 80 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing"; |
| 84 | 81 |
| 85 // Enables MTP support in Files.app. | 82 // Enables MTP support in Files.app. |
| 86 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp"; | 83 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp"; |
| 87 | 84 |
| 85 // Enable explicit HID detection on OOBE. |
| 86 const char kEnableHIDDetectionOnOOBE[] = "enable-hid-detection-on-oobe"; |
| 87 |
| 88 // Enables notifications about captive portals in session. | 88 // Enables notifications about captive portals in session. |
| 89 const char kEnableNetworkPortalNotification[] = | 89 const char kEnableNetworkPortalNotification[] = |
| 90 "enable-network-portal-notification"; | 90 "enable-network-portal-notification"; |
| 91 | 91 |
| 92 // Enables touchpad three-finger-click as middle button. | 92 // Enables touchpad three-finger-click as middle button. |
| 93 const char kEnableTouchpadThreeFingerClick[] | 93 const char kEnableTouchpadThreeFingerClick[] |
| 94 = "enable-touchpad-three-finger-click"; | 94 = "enable-touchpad-three-finger-click"; |
| 95 | 95 |
| 96 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather | 96 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather |
| 97 // than the kiosk app mode. | 97 // than the kiosk app mode. |
| (...skipping 123 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 |