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 // Enables overriding the Chrome OS board type when running on Linux. | 10 // Enables overriding the Chrome OS board type when running on Linux. |
11 const char kChromeOSReleaseBoard[] = "chromeos-release-board"; | 11 const char kChromeOSReleaseBoard[] = "chromeos-release-board"; |
12 | 12 |
13 // Forces the stub implementation of dbus clients. | 13 // Forces the stub implementation of dbus clients. |
14 const char kDbusStub[] = "dbus-stub"; | 14 const char kDbusStub[] = "dbus-stub"; |
15 | 15 |
16 // Disables fake ethernet network in the stub implementations. | 16 // Disables fake ethernet network in the stub implementations. |
17 const char kDisableStubEthernet[] = "disable-stub-ethernet"; | 17 const char kDisableStubEthernet[] = "disable-stub-ethernet"; |
18 | 18 |
19 // Enables experiments in locally managed user creation ui. | 19 // Enables experiments in locally managed user creation ui. |
20 const char kEnableLocallyManagedUserUIExperiments[] = | 20 const char kEnableLocallyManagedUserUIExperiments[] = |
21 "enable-locally-managed-users-ui-experiments"; | 21 "enable-locally-managed-users-ui-experiments"; |
22 | 22 |
23 // Enables the new NetworkChangeNotifier using the NetworkStateHandler class. | 23 // Enables the new NetworkChangeNotifier using the NetworkStateHandler class. |
24 const char kEnableNewNetworkChangeNotifier[] = | 24 const char kEnableNewNetworkChangeNotifier[] = |
25 "enable-new-network-change-notifier"; | 25 "enable-new-network-change-notifier"; |
26 | 26 |
27 // Enables the new NetworkConfigurationHandler class. | 27 // Enables usage of the new ManagedNetworkConfigurationHandler and |
28 const char kEnableNewNetworkConfigurationHandlers[] = | 28 // NetworkConfigurationHandler singletons. |
29 "enable-new-network-configuration-handlers"; | 29 const char kUseNewNetworkConfigurationHandlers[] = |
| 30 "use-new-network-configuration-handlers"; |
30 | 31 |
31 // Enables screensaver extensions. | 32 // Enables screensaver extensions. |
32 const char kEnableScreensaverExtensions[] = "enable-screensaver-extensions"; | 33 const char kEnableScreensaverExtensions[] = "enable-screensaver-extensions"; |
33 | 34 |
34 // Enable "interactive" mode for stub implemenations (e.g. NetworkStateHandler) | 35 // Enable "interactive" mode for stub implemenations (e.g. NetworkStateHandler) |
35 const char kEnableStubInteractive[] = "enable-stub-interactive"; | 36 const char kEnableStubInteractive[] = "enable-stub-interactive"; |
36 | 37 |
37 // Sends test messages on first call to RequestUpdate (stub only). | 38 // Sends test messages on first call to RequestUpdate (stub only). |
38 const char kSmsTestMessages[] = "sms-test-messages"; | 39 const char kSmsTestMessages[] = "sms-test-messages"; |
39 | 40 |
40 } // namespace switches | 41 } // namespace switches |
41 } // namespace chromeos | 42 } // namespace chromeos |
OLD | NEW |