| 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 | 75 |
| 76 // Disables portal detection and network error handling before auto | 76 // Disables portal detection and network error handling before auto |
| 77 // update. | 77 // update. |
| 78 const char kDisableOOBEBlockingUpdate[] = | 78 const char kDisableOOBEBlockingUpdate[] = |
| 79 "disable-oobe-blocking-update"; | 79 "disable-oobe-blocking-update"; |
| 80 | 80 |
| 81 // Enables overriding the path for the default echo component extension. | 81 // Enables overriding the path for the default echo component extension. |
| 82 // Useful for testing. | 82 // Useful for testing. |
| 83 const char kEchoExtensionPath[] = "echo-ext-path"; | 83 const char kEchoExtensionPath[] = "echo-ext-path"; |
| 84 | 84 |
| 85 // Enables component extension that initializes background pages of | |
| 86 // certain hosted applications. | |
| 87 const char kEnableBackgroundLoader[] = "enable-background-loader"; | |
| 88 | |
| 89 // Enables switching between different cellular carriers from the UI. | 85 // Enables switching between different cellular carriers from the UI. |
| 90 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; | 86 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; |
| 91 | 87 |
| 92 // Enables notifications about captive portals in session. | 88 // Enables notifications about captive portals in session. |
| 93 const char kEnableNetworkPortalNotification[] = | 89 const char kEnableNetworkPortalNotification[] = |
| 94 "enable-network-portal-notification"; | 90 "enable-network-portal-notification"; |
| 95 | 91 |
| 96 // Enable "interactive" mode for stub implemenations (e.g. PowerManagerClient) | 92 // Enable "interactive" mode for stub implemenations (e.g. PowerManagerClient) |
| 97 const char kEnableStubInteractive[] = "enable-stub-interactive"; | 93 const char kEnableStubInteractive[] = "enable-stub-interactive"; |
| 98 | 94 |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 const char kForceFirstRunUI[] = "force-first-run-ui"; | 216 const char kForceFirstRunUI[] = "force-first-run-ui"; |
| 221 | 217 |
| 222 // Enables testing for auto update UI. | 218 // Enables testing for auto update UI. |
| 223 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 219 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
| 224 | 220 |
| 225 // Enables features required for supervised user sync, | 221 // Enables features required for supervised user sync, |
| 226 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; | 222 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; |
| 227 | 223 |
| 228 } // namespace switches | 224 } // namespace switches |
| 229 } // namespace chromeos | 225 } // namespace chromeos |
| OLD | NEW |