| 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. |
| 11 const char kAppOemManifestFile[] = "app-mode-oem-manifest"; | 11 const char kAppOemManifestFile[] = "app-mode-oem-manifest"; |
| 12 | 12 |
| 13 // When wallpaper boot animation is not disabled this switch | 13 // When wallpaper boot animation is not disabled this switch |
| 14 // is used to override OOBE/sign in WebUI init type. | 14 // is used to override OOBE/sign in WebUI init type. |
| 15 // Possible values: parallel|postpone. Default: parallel. | 15 // Possible values: parallel|postpone. Default: parallel. |
| 16 const char kAshWebUIInit[] = "ash-webui-init"; | 16 const char kAshWebUIInit[] = "ash-webui-init"; |
| 17 | 17 |
| 18 // Specifies the URL of the consumer device management backend. | 18 // Specifies the URL of the consumer device management backend. |
| 19 const char kConsumerDeviceManagementUrl[] = "consumer-device-management-url"; | 19 const char kConsumerDeviceManagementUrl[] = "consumer-device-management-url"; |
| 20 | 20 |
| 21 // Forces the stub implementation of dbus clients. | 21 // Forces the stub implementation of dbus clients. |
| 22 const char kDbusStub[] = "dbus-stub"; | 22 const char kDbusStub[] = "dbus-stub"; |
| 23 | 23 |
| 24 // Comma-spearated list of dbus clients that should be unstubbed. |
| 25 // See chromeos/dbus/dbus_client_bundle.cc for the names of the dbus clients. |
| 26 const char kDbusUnstubClients[] = "dbus-unstub-clients"; |
| 27 |
| 24 // Time before a machine at OOBE is considered derelict. | 28 // Time before a machine at OOBE is considered derelict. |
| 25 const char kDerelictDetectionTimeout[] = "derelict-detection-timeout"; | 29 const char kDerelictDetectionTimeout[] = "derelict-detection-timeout"; |
| 26 | 30 |
| 27 // Time before a derelict machines starts demo mode. | 31 // Time before a derelict machines starts demo mode. |
| 28 const char kDerelictIdleTimeout[] = "derelict-idle-timeout"; | 32 const char kDerelictIdleTimeout[] = "derelict-idle-timeout"; |
| 29 | 33 |
| 30 // Disables wallpaper boot animation (except of OOBE case). | 34 // Disables wallpaper boot animation (except of OOBE case). |
| 31 const char kDisableBootAnimation[] = "disable-boot-animation"; | 35 const char kDisableBootAnimation[] = "disable-boot-animation"; |
| 32 | 36 |
| 33 // Disables the ChromeOS demo. | 37 // Disables the ChromeOS demo. |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 | 247 |
| 244 // Screenshot testing: specifies the directory where the golden screenshots are | 248 // Screenshot testing: specifies the directory where the golden screenshots are |
| 245 // stored. | 249 // stored. |
| 246 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; | 250 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; |
| 247 | 251 |
| 248 // Screenshot testing: specifies the directoru where artifacts will be stored. | 252 // Screenshot testing: specifies the directoru where artifacts will be stored. |
| 249 const char kArtifactsDir[] = "artifacts-dir"; | 253 const char kArtifactsDir[] = "artifacts-dir"; |
| 250 | 254 |
| 251 } // namespace switches | 255 } // namespace switches |
| 252 } // namespace chromeos | 256 } // namespace chromeos |
| OLD | NEW |