| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 const char kDisableNewKioskUI[] = "disable-new-kiosk-ui"; | 56 const char kDisableNewKioskUI[] = "disable-new-kiosk-ui"; |
| 57 | 57 |
| 58 // Disable Quickoffice component app thus handlers won't be registered so | 58 // Disable Quickoffice component app thus handlers won't be registered so |
| 59 // it will be possible to install another version as normal app for testing. | 59 // it will be possible to install another version as normal app for testing. |
| 60 const char kDisableQuickofficeComponentApp[] = | 60 const char kDisableQuickofficeComponentApp[] = |
| 61 "disable-quickoffice-component-app"; | 61 "disable-quickoffice-component-app"; |
| 62 | 62 |
| 63 // Disables volume adjust sound. | 63 // Disables volume adjust sound. |
| 64 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; | 64 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; |
| 65 | 65 |
| 66 // Disables notifications about captive portals in session. |
| 67 const char kDisableNetworkPortalNotification[] = |
| 68 "disable-network-portal-notification"; |
| 69 |
| 66 // Disables fetching online CrOS EULA page, only static version is shown. | 70 // Disables fetching online CrOS EULA page, only static version is shown. |
| 67 const char kDisableOnlineEULA[] = "disable-cros-online-eula"; | 71 const char kDisableOnlineEULA[] = "disable-cros-online-eula"; |
| 68 | 72 |
| 69 // Avoid doing animations upon oobe. | 73 // Avoid doing animations upon oobe. |
| 70 const char kDisableOobeAnimation[] = "disable-oobe-animation"; | 74 const char kDisableOobeAnimation[] = "disable-oobe-animation"; |
| 71 | 75 |
| 72 // Disables portal detection and network error handling before auto | 76 // Disables portal detection and network error handling before auto |
| 73 // update. | 77 // update. |
| 74 const char kDisableOOBEBlockingUpdate[] = | 78 const char kDisableOOBEBlockingUpdate[] = |
| 75 "disable-oobe-blocking-update"; | 79 "disable-oobe-blocking-update"; |
| 76 | 80 |
| 77 // Enables overriding the path for the default echo component extension. | 81 // Enables overriding the path for the default echo component extension. |
| 78 // Useful for testing. | 82 // Useful for testing. |
| 79 const char kEchoExtensionPath[] = "echo-ext-path"; | 83 const char kEchoExtensionPath[] = "echo-ext-path"; |
| 80 | 84 |
| 81 // Enables component extension that initializes background pages of | 85 // Enables component extension that initializes background pages of |
| 82 // certain hosted applications. | 86 // certain hosted applications. |
| 83 const char kEnableBackgroundLoader[] = "enable-background-loader"; | 87 const char kEnableBackgroundLoader[] = "enable-background-loader"; |
| 84 | 88 |
| 85 // Enables switching between different cellular carriers from the UI. | 89 // Enables switching between different cellular carriers from the UI. |
| 86 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; | 90 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; |
| 87 | 91 |
| 92 // Enables notifications about captive portals in session. |
| 93 const char kEnableNetworkPortalNotification[] = |
| 94 "enable-network-portal-notification"; |
| 95 |
| 88 // Enable "interactive" mode for stub implemenations (e.g. NetworkStateHandler) | 96 // Enable "interactive" mode for stub implemenations (e.g. NetworkStateHandler) |
| 89 const char kEnableStubInteractive[] = "enable-stub-interactive"; | 97 const char kEnableStubInteractive[] = "enable-stub-interactive"; |
| 90 | 98 |
| 91 // Enable stub portalled wifi network for testing. | 99 // Enable stub portalled wifi network for testing. |
| 92 const char kEnableStubPortalledWifi[] = "enable-stub-portalled-wifi"; | 100 const char kEnableStubPortalledWifi[] = "enable-stub-portalled-wifi"; |
| 93 | 101 |
| 94 // Enables touchpad three-finger-click as middle button. | 102 // Enables touchpad three-finger-click as middle button. |
| 95 const char kEnableTouchpadThreeFingerClick[] | 103 const char kEnableTouchpadThreeFingerClick[] |
| 96 = "enable-touchpad-three-finger-click"; | 104 = "enable-touchpad-three-finger-click"; |
| 97 | 105 |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 const char kForceFirstRunUI[] = "force-first-run-ui"; | 221 const char kForceFirstRunUI[] = "force-first-run-ui"; |
| 214 | 222 |
| 215 // Enables testing for auto update UI. | 223 // Enables testing for auto update UI. |
| 216 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 224 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
| 217 | 225 |
| 218 // Enables features required for supervised user sync, | 226 // Enables features required for supervised user sync, |
| 219 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; | 227 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; |
| 220 | 228 |
| 221 } // namespace switches | 229 } // namespace switches |
| 222 } // namespace chromeos | 230 } // namespace chromeos |
| OLD | NEW |