| 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 19 matching lines...) Expand all Loading... |
| 30 // Disables the ChromeOS demo. | 30 // Disables the ChromeOS demo. |
| 31 const char kDisableDemoMode[] = "disable-demo-mode"; | 31 const char kDisableDemoMode[] = "disable-demo-mode"; |
| 32 | 32 |
| 33 // Disables reporting recently logged in users for enterprise-managed devices. | 33 // Disables reporting recently logged in users for enterprise-managed devices. |
| 34 const char kDisableEnterpriseUserReporting[] = | 34 const char kDisableEnterpriseUserReporting[] = |
| 35 "disable-enterprise-user-reporting"; | 35 "disable-enterprise-user-reporting"; |
| 36 | 36 |
| 37 // Disable Genius App and use the original Help App instead. | 37 // Disable Genius App and use the original Help App instead. |
| 38 const char kDisableGeniusApp[] = "disable-genius-app"; | 38 const char kDisableGeniusApp[] = "disable-genius-app"; |
| 39 | 39 |
| 40 // Disable explicit HID detection on OOBE. |
| 41 const char kDisableHIDDetectionOnOOBE[] = "disable-hid-detection-on-oobe"; |
| 42 |
| 40 // Avoid doing expensive animations upon login. | 43 // Avoid doing expensive animations upon login. |
| 41 const char kDisableLoginAnimations[] = "disable-login-animations"; | 44 const char kDisableLoginAnimations[] = "disable-login-animations"; |
| 42 | 45 |
| 43 // Disable new channel switcher UI. | 46 // Disable new channel switcher UI. |
| 44 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; | 47 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; |
| 45 | 48 |
| 46 // Disables new Kiosk UI when kiosk apps are represented as user pods. | 49 // Disables new Kiosk UI when kiosk apps are represented as user pods. |
| 47 const char kDisableNewKioskUI[] = "disable-new-kiosk-ui"; | 50 const char kDisableNewKioskUI[] = "disable-new-kiosk-ui"; |
| 48 | 51 |
| 49 // Disable Quickoffice component app thus handlers won't be registered so | 52 // Disable Quickoffice component app thus handlers won't be registered so |
| (...skipping 148 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 |