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