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 // Enables experiments in locally managed user creation ui. | 16 // Enables experiments in locally managed user creation ui. |
17 const char kEnableLocallyManagedUserUIExperiments[] = | 17 const char kEnableLocallyManagedUserUIExperiments[] = |
18 "enable-locally-managed-users-ui-experiments"; | 18 "enable-locally-managed-users-ui-experiments"; |
19 | 19 |
20 // Enables the new NetworkChangeNotifier using the NetworkStateHandler class. | 20 // Enables the new NetworkChangeNotifier using the NetworkStateHandler class. |
21 const char kEnableNewNetworkChangeNotifier[] = | 21 const char kEnableNewNetworkChangeNotifier[] = |
22 "enable-new-network-change-notifier"; | 22 "enable-new-network-change-notifier"; |
23 | 23 |
24 // Enables screensaver extensions. | 24 // Enables screensaver extensions. |
25 const char kEnableScreensaverExtensions[] = "enable-screensaver-extensions"; | 25 const char kEnableScreensaverExtensions[] = "enable-screensaver-extensions"; |
26 | 26 |
27 // Enables the new NetworkConfigurationHandler class. | |
28 const char kEnableNewNetworkConfigurationHandlers[] = | |
29 "enable-new-network-configuration-handlers"; | |
30 | |
31 // Sends test messages on first call to RequestUpdate (stub only). | 27 // Sends test messages on first call to RequestUpdate (stub only). |
32 const char kSmsTestMessages[] = "sms-test-messages"; | 28 const char kSmsTestMessages[] = "sms-test-messages"; |
33 | 29 |
34 } // namespace switches | 30 } // namespace switches |
35 } // namespace chromeos | 31 } // namespace chromeos |
OLD | NEW |