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 // Enables overriding the path for the default authentication extension. | 18 // Enables overriding the path for the default authentication extension. |
19 const char kAuthExtensionPath[] = "auth-ext-path"; | 19 const char kAuthExtensionPath[] = "auth-ext-path"; |
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 // All stub networks are idle by default. | 24 // All stub networks are idle by default. |
25 const char kDefaultStubNetworkStateIdle[] = "default-stub-network-state-idle"; | 25 const char kDefaultStubNetworkStateIdle[] = "default-stub-network-state-idle"; |
26 | 26 |
27 // Time before a machine at OOBE is considered derelict | 27 // Time before a machine at OOBE is considered derelict. |
28 const char kDerelictDetectionTimeout[] = "derelict-detection-timeout"; | 28 const char kDerelictDetectionTimeout[] = "derelict-detection-timeout"; |
29 | 29 |
30 // Time before a derelict machines starts demo mode. | 30 // Time before a derelict machines starts demo mode. |
31 const char kDerelictIdleTimeout[] = "derelict-idle-timeout"; | 31 const char kDerelictIdleTimeout[] = "derelict-idle-timeout"; |
32 | 32 |
33 // Disables wallpaper boot animation (except of OOBE case). | 33 // Disables wallpaper boot animation (except of OOBE case). |
34 const char kDisableBootAnimation[] = "disable-boot-animation"; | 34 const char kDisableBootAnimation[] = "disable-boot-animation"; |
35 | 35 |
36 // Disables Google Drive integration. | 36 // Disables Google Drive integration. |
37 const char kDisableDrive[] = "disable-drive"; | 37 const char kDisableDrive[] = "disable-drive"; |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 const char kForceFirstRunUI[] = "force-first-run-ui"; | 223 const char kForceFirstRunUI[] = "force-first-run-ui"; |
224 | 224 |
225 // Enables testing for auto update UI. | 225 // Enables testing for auto update UI. |
226 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 226 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
227 | 227 |
228 // Enables features required for supervised user sync, | 228 // Enables features required for supervised user sync, |
229 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; | 229 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; |
230 | 230 |
231 } // namespace switches | 231 } // namespace switches |
232 } // namespace chromeos | 232 } // namespace chromeos |
OLD | NEW |