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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 // Enable "interactive" mode for stub implemenations (e.g. NetworkStateHandler) | 83 // Enable "interactive" mode for stub implemenations (e.g. NetworkStateHandler) |
84 const char kEnableStubInteractive[] = "enable-stub-interactive"; | 84 const char kEnableStubInteractive[] = "enable-stub-interactive"; |
85 | 85 |
86 // Enable stub portalled wifi network for testing. | 86 // Enable stub portalled wifi network for testing. |
87 const char kEnableStubPortalledWifi[] = "enable-stub-portalled-wifi"; | 87 const char kEnableStubPortalledWifi[] = "enable-stub-portalled-wifi"; |
88 | 88 |
89 // Enables touchpad three-finger-click as middle button. | 89 // Enables touchpad three-finger-click as middle button. |
90 const char kEnableTouchpadThreeFingerClick[] | 90 const char kEnableTouchpadThreeFingerClick[] |
91 = "enable-touchpad-three-finger-click"; | 91 = "enable-touchpad-three-finger-click"; |
92 | 92 |
| 93 // Enables volume adjust sound. |
| 94 const char kEnableVolumeAdjustSound[] = "enable-volume-adjust-sound"; |
| 95 |
93 // Specifies stub network types to be enabled. If this switch is not specified, | 96 // Specifies stub network types to be enabled. If this switch is not specified, |
94 // ethernet, wifi and vpn are enabled by default. | 97 // ethernet, wifi and vpn are enabled by default. |
95 // | 98 // |
96 // Examples: | 99 // Examples: |
97 // Disable all network types: --enabled-stub-network-types='' | 100 // Disable all network types: --enabled-stub-network-types='' |
98 // Enable wifi only: --enabled-stub-network-types=wifi | 101 // Enable wifi only: --enabled-stub-network-types=wifi |
99 // Enable ethernet and wifi: --enabled-stub-network-types=ethernet,wifi | 102 // Enable ethernet and wifi: --enabled-stub-network-types=ethernet,wifi |
100 const char kEnabledStubNetworkTypes[] = "enabled-stub-network-types"; | 103 const char kEnabledStubNetworkTypes[] = "enabled-stub-network-types"; |
101 | 104 |
102 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather | 105 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 205 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
203 | 206 |
204 // Forces first-run UI to be shown for every login. | 207 // Forces first-run UI to be shown for every login. |
205 const char kForceFirstRunUI[] = "force-first-run-ui"; | 208 const char kForceFirstRunUI[] = "force-first-run-ui"; |
206 | 209 |
207 // Enables testing for auto update UI. | 210 // Enables testing for auto update UI. |
208 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 211 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
209 | 212 |
210 } // namespace switches | 213 } // namespace switches |
211 } // namespace chromeos | 214 } // namespace chromeos |
OLD | NEW |