| 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 21 matching lines...) Expand all Loading... |
| 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 // Avoid doing expensive animations upon login. | 39 // Avoid doing expensive animations upon login. |
| 40 const char kDisableLoginAnimations[] = "disable-login-animations"; | 40 const char kDisableLoginAnimations[] = "disable-login-animations"; |
| 41 | 41 |
| 42 // Disable login UI (user pods) scrolling into view on JS side when virtual |
| 43 // keyboard is shown. |
| 44 const char kDisableLoginScrollIntoView[] = "disable-login-scroll-into-view"; |
| 45 |
| 42 // Disable new channel switcher UI. | 46 // Disable new channel switcher UI. |
| 43 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; | 47 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; |
| 44 | 48 |
| 45 // 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. |
| 46 const char kDisableNewKioskUI[] = "disable-new-kiosk-ui"; | 50 const char kDisableNewKioskUI[] = "disable-new-kiosk-ui"; |
| 47 | 51 |
| 48 // Disable Quickoffice component app thus handlers won't be registered so | 52 // Disable Quickoffice component app thus handlers won't be registered so |
| 49 // it will be possible to install another version as normal app for testing. | 53 // it will be possible to install another version as normal app for testing. |
| 50 const char kDisableQuickofficeComponentApp[] = | 54 const char kDisableQuickofficeComponentApp[] = |
| 51 "disable-quickoffice-component-app"; | 55 "disable-quickoffice-component-app"; |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 207 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
| 204 | 208 |
| 205 // Forces first-run UI to be shown for every login. | 209 // Forces first-run UI to be shown for every login. |
| 206 const char kForceFirstRunUI[] = "force-first-run-ui"; | 210 const char kForceFirstRunUI[] = "force-first-run-ui"; |
| 207 | 211 |
| 208 // Enables testing for auto update UI. | 212 // Enables testing for auto update UI. |
| 209 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 213 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
| 210 | 214 |
| 211 } // namespace switches | 215 } // namespace switches |
| 212 } // namespace chromeos | 216 } // namespace chromeos |
| OLD | NEW |