| 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 kEnableBackgroundLoader[] = "enable-background-loader"; | 75 const char kEnableBackgroundLoader[] = "enable-background-loader"; |
| 76 | 76 |
| 77 // Enables switching between different cellular carriers from the UI. | 77 // Enables switching between different cellular carriers from the UI. |
| 78 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; | 78 const char kEnableCarrierSwitching[] = "enable-carrier-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 // Enables reporting recently logged in users for enterprise-managed devices. |
| 86 const char kEnableEnterpriseUserReporting[] = |
| 87 "enable-enterprise-user-reporting"; |
| 88 |
| 85 // Enable to show the indicator about the IME (input method editor) mode | 89 // Enable to show the indicator about the IME (input method editor) mode |
| 86 // on Chrome OS. | 90 // on Chrome OS. |
| 87 const char kEnableIMEModeIndicator[] = "enable-ime-mode-indicator"; | 91 const char kEnableIMEModeIndicator[] = "enable-ime-mode-indicator"; |
| 88 | 92 |
| 89 // Enable "interactive" mode for stub implemenations (e.g. NetworkStateHandler) | 93 // Enable "interactive" mode for stub implemenations (e.g. NetworkStateHandler) |
| 90 const char kEnableStubInteractive[] = "enable-stub-interactive"; | 94 const char kEnableStubInteractive[] = "enable-stub-interactive"; |
| 91 | 95 |
| 92 // Enable stub portalled wifi network for testing. | 96 // Enable stub portalled wifi network for testing. |
| 93 const char kEnableStubPortalledWifi[] = "enable-stub-portalled-wifi"; | 97 const char kEnableStubPortalledWifi[] = "enable-stub-portalled-wifi"; |
| 94 | 98 |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 const char kEnableSamlSignin[] = "enable-saml-signin"; | 189 const char kEnableSamlSignin[] = "enable-saml-signin"; |
| 186 | 190 |
| 187 // Enables new first-run overlay UI. | 191 // Enables new first-run overlay UI. |
| 188 const char kEnableFirstRunUI[] = "enable-first-run-ui"; | 192 const char kEnableFirstRunUI[] = "enable-first-run-ui"; |
| 189 | 193 |
| 190 // Enables testing for auto update UI. | 194 // Enables testing for auto update UI. |
| 191 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 195 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
| 192 | 196 |
| 193 } // namespace switches | 197 } // namespace switches |
| 194 } // namespace chromeos | 198 } // namespace chromeos |
| OLD | NEW |