| 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 | 30 |
| 31 // Time before a derelict machines starts demo mode. | 31 // Time before a derelict machines starts demo mode. |
| 32 const char kDerelictIdleTimeout[] = "derelict-idle-timeout"; | 32 const char kDerelictIdleTimeout[] = "derelict-idle-timeout"; |
| 33 | 33 |
| 34 // Disables wallpaper boot animation (except of OOBE case). | 34 // Disables wallpaper boot animation (except of OOBE case). |
| 35 const char kDisableBootAnimation[] = "disable-boot-animation"; | 35 const char kDisableBootAnimation[] = "disable-boot-animation"; |
| 36 | 36 |
| 37 // Disables the ChromeOS demo. | 37 // Disables the ChromeOS demo. |
| 38 const char kDisableDemoMode[] = "disable-demo-mode"; | 38 const char kDisableDemoMode[] = "disable-demo-mode"; |
| 39 | 39 |
| 40 // Disable Genius App and use the original Help App instead. | |
| 41 const char kDisableGeniusApp[] = "disable-genius-app"; | |
| 42 | |
| 43 // Disable HID-detection OOBE screen. | 40 // Disable HID-detection OOBE screen. |
| 44 const char kDisableHIDDetectionOnOOBE[] = "disable-hid-detection-on-oobe"; | 41 const char kDisableHIDDetectionOnOOBE[] = "disable-hid-detection-on-oobe"; |
| 45 | 42 |
| 46 // Avoid doing expensive animations upon login. | 43 // Avoid doing expensive animations upon login. |
| 47 const char kDisableLoginAnimations[] = "disable-login-animations"; | 44 const char kDisableLoginAnimations[] = "disable-login-animations"; |
| 48 | 45 |
| 49 // Disable login/lock UI (user pods) scrolling into view on JS side when virtual | 46 // Disable login/lock UI (user pods) scrolling into view on JS side when virtual |
| 50 // keyboard is shown. | 47 // keyboard is shown. |
| 51 const char kDisableLoginScrollIntoView[] = "disable-login-scroll-into-view"; | 48 const char kDisableLoginScrollIntoView[] = "disable-login-scroll-into-view"; |
| 52 | 49 |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 | 239 |
| 243 // Screenshot testing: specifies the directory where the golden screenshots are | 240 // Screenshot testing: specifies the directory where the golden screenshots are |
| 244 // stored. | 241 // stored. |
| 245 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; | 242 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; |
| 246 | 243 |
| 247 // Screenshot testing: specifies the directoru where artifacts will be stored. | 244 // Screenshot testing: specifies the directoru where artifacts will be stored. |
| 248 const char kArtifactsDir[] = "artifacts-dir"; | 245 const char kArtifactsDir[] = "artifacts-dir"; |
| 249 | 246 |
| 250 } // namespace switches | 247 } // namespace switches |
| 251 } // namespace chromeos | 248 } // namespace chromeos |
| OLD | NEW |