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 // Enable experimental Bluetooth features. |
| 20 const char kEnableExperimentalBluetooth[] = "enable-experimental-bluetooth"; |
| 21 |
19 // Enables experiments in locally managed user creation ui. | 22 // Enables experiments in locally managed user creation ui. |
20 const char kEnableLocallyManagedUserUIExperiments[] = | 23 const char kEnableLocallyManagedUserUIExperiments[] = |
21 "enable-locally-managed-users-ui-experiments"; | 24 "enable-locally-managed-users-ui-experiments"; |
22 | 25 |
23 // Enables the new NetworkChangeNotifier using the NetworkStateHandler class. | 26 // Enables the new NetworkChangeNotifier using the NetworkStateHandler class. |
24 const char kEnableNewNetworkChangeNotifier[] = | 27 const char kEnableNewNetworkChangeNotifier[] = |
25 "enable-new-network-change-notifier"; | 28 "enable-new-network-change-notifier"; |
26 | 29 |
27 // Enables the new NetworkConfigurationHandler class. | 30 // Enables the new NetworkConfigurationHandler class. |
28 const char kEnableNewNetworkConfigurationHandlers[] = | 31 const char kEnableNewNetworkConfigurationHandlers[] = |
29 "enable-new-network-configuration-handlers"; | 32 "enable-new-network-configuration-handlers"; |
30 | 33 |
31 // Enables screensaver extensions. | 34 // Enables screensaver extensions. |
32 const char kEnableScreensaverExtensions[] = "enable-screensaver-extensions"; | 35 const char kEnableScreensaverExtensions[] = "enable-screensaver-extensions"; |
33 | 36 |
34 // Enable "interactive" mode for stub implemenations (e.g. NetworkStateHandler) | 37 // Enable "interactive" mode for stub implemenations (e.g. NetworkStateHandler) |
35 const char kEnableStubInteractive[] = "enable-stub-interactive"; | 38 const char kEnableStubInteractive[] = "enable-stub-interactive"; |
36 | 39 |
37 // Sends test messages on first call to RequestUpdate (stub only). | 40 // Sends test messages on first call to RequestUpdate (stub only). |
38 const char kSmsTestMessages[] = "sms-test-messages"; | 41 const char kSmsTestMessages[] = "sms-test-messages"; |
39 | 42 |
40 } // namespace switches | 43 } // namespace switches |
41 } // namespace chromeos | 44 } // namespace chromeos |
OLD | NEW |