| 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. |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; | 75 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; |
| 76 | 76 |
| 77 // Enable switching between audio devices in Chrome instead of cras. | 77 // Enable switching between audio devices in Chrome instead of cras. |
| 78 const char kEnableChromeAudioSwitching[] = "enable-chrome-audio-switching"; | 78 const char kEnableChromeAudioSwitching[] = "enable-chrome-audio-switching"; |
| 79 | 79 |
| 80 // Enables Chrome Captive Portal detector, which initiates Captive | 80 // Enables Chrome Captive Portal detector, which initiates Captive |
| 81 // Portal detection for new active networks. | 81 // Portal detection for new active networks. |
| 82 const char kEnableChromeCaptivePortalDetector[] = | 82 const char kEnableChromeCaptivePortalDetector[] = |
| 83 "enable-chrome-captive-portal-detector"; | 83 "enable-chrome-captive-portal-detector"; |
| 84 | 84 |
| 85 // Disables the new NetworkChangeNotifier which uses NetworkStateHandler. | |
| 86 const char kDisableNewNetworkChangeNotifier[] = | |
| 87 "disable-new-network-change-notifier"; | |
| 88 | |
| 89 // Enables screensaver extensions. | 85 // Enables screensaver extensions. |
| 90 const char kEnableScreensaverExtensions[] = "enable-screensaver-extensions"; | 86 const char kEnableScreensaverExtensions[] = "enable-screensaver-extensions"; |
| 91 | 87 |
| 92 // Enable "interactive" mode for stub implemenations (e.g. NetworkStateHandler) | 88 // Enable "interactive" mode for stub implemenations (e.g. NetworkStateHandler) |
| 93 const char kEnableStubInteractive[] = "enable-stub-interactive"; | 89 const char kEnableStubInteractive[] = "enable-stub-interactive"; |
| 94 | 90 |
| 95 // Enables touchpad three-finger-click as middle button. | 91 // Enables touchpad three-finger-click as middle button. |
| 96 const char kEnableTouchpadThreeFingerClick[] | 92 const char kEnableTouchpadThreeFingerClick[] |
| 97 = "enable-touchpad-three-finger-click"; | 93 = "enable-touchpad-three-finger-click"; |
| 98 | 94 |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 // Enables usage of the new ManagedNetworkConfigurationHandler and | 188 // Enables usage of the new ManagedNetworkConfigurationHandler and |
| 193 // NetworkConfigurationHandler singletons. | 189 // NetworkConfigurationHandler singletons. |
| 194 const char kUseNewNetworkConfigurationHandlers[] = | 190 const char kUseNewNetworkConfigurationHandlers[] = |
| 195 "use-new-network-configuration-handlers"; | 191 "use-new-network-configuration-handlers"; |
| 196 | 192 |
| 197 const char kUseNewNetworkConnectionHandler[] = | 193 const char kUseNewNetworkConnectionHandler[] = |
| 198 "use-new-network-connection-handler"; | 194 "use-new-network-connection-handler"; |
| 199 | 195 |
| 200 } // namespace switches | 196 } // namespace switches |
| 201 } // namespace chromeos | 197 } // namespace chromeos |
| OLD | NEW |