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