| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 const char kDisableQuickofficeComponentApp[] = | 51 const char kDisableQuickofficeComponentApp[] = |
| 52 "disable-quickoffice-component-app"; | 52 "disable-quickoffice-component-app"; |
| 53 | 53 |
| 54 // Disables volume adjust sound. | 54 // Disables volume adjust sound. |
| 55 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; | 55 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; |
| 56 | 56 |
| 57 // Disables notifications about captive portals in session. | 57 // Disables notifications about captive portals in session. |
| 58 const char kDisableNetworkPortalNotification[] = | 58 const char kDisableNetworkPortalNotification[] = |
| 59 "disable-network-portal-notification"; | 59 "disable-network-portal-notification"; |
| 60 | 60 |
| 61 // Disables portal detection and network error handling before auto | |
| 62 // update. | |
| 63 const char kDisableOOBEBlockingUpdate[] = | |
| 64 "disable-oobe-blocking-update"; | |
| 65 | |
| 66 // Enables overriding the path for the default echo component extension. | 61 // Enables overriding the path for the default echo component extension. |
| 67 // Useful for testing. | 62 // Useful for testing. |
| 68 const char kEchoExtensionPath[] = "echo-ext-path"; | 63 const char kEchoExtensionPath[] = "echo-ext-path"; |
| 69 | 64 |
| 70 // Enables switching between different cellular carriers from the UI. | 65 // Enables switching between different cellular carriers from the UI. |
| 71 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; | 66 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; |
| 72 | 67 |
| 73 // Enables notifications about captive portals in session. | 68 // Enables notifications about captive portals in session. |
| 74 const char kEnableNetworkPortalNotification[] = | 69 const char kEnableNetworkPortalNotification[] = |
| 75 "enable-network-portal-notification"; | 70 "enable-network-portal-notification"; |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 const char kForceFirstRunUI[] = "force-first-run-ui"; | 202 const char kForceFirstRunUI[] = "force-first-run-ui"; |
| 208 | 203 |
| 209 // Enables testing for auto update UI. | 204 // Enables testing for auto update UI. |
| 210 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 205 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
| 211 | 206 |
| 212 // Enables features required for supervised user sync, | 207 // Enables features required for supervised user sync, |
| 213 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; | 208 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; |
| 214 | 209 |
| 215 } // namespace switches | 210 } // namespace switches |
| 216 } // namespace chromeos | 211 } // namespace chromeos |
| OLD | NEW |