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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 // 'wifi=off' - Wifi networks are all initially disconnected ('0' also works) | 211 // 'wifi=off' - Wifi networks are all initially disconnected ('0' also works) |
212 // 'wifi=disabled' - Wifi is initially disabled | 212 // 'wifi=disabled' - Wifi is initially disabled |
213 // 'wifi=none' - Wifi is unavailable | 213 // 'wifi=none' - Wifi is unavailable |
214 // 'wifi=portal' - Wifi connection will be in Portal state | 214 // 'wifi=portal' - Wifi connection will be in Portal state |
215 // 'cellular=1' - Cellular is initially connected | 215 // 'cellular=1' - Cellular is initially connected |
216 // 'interactive=3' - Interactive mode, connect/scan/etc requests take 3 secs | 216 // 'interactive=3' - Interactive mode, connect/scan/etc requests take 3 secs |
217 const char kShillStub[] = "shill-stub"; | 217 const char kShillStub[] = "shill-stub"; |
218 | 218 |
219 // If this switch is set, controller pairing process is displayed after update | 219 // If this switch is set, controller pairing process is displayed after update |
220 // stage of OOBE. | 220 // stage of OOBE. |
221 const char kShowControllerPairingDemo[] = "show-controller-pairing-demo"; | |
222 | |
223 // If this switch is set, controller pairing process is displayed after update | |
224 // stage of OOBE. | |
225 const char kShowHostPairingDemo[] = "show-host-pairing-demo"; | 221 const char kShowHostPairingDemo[] = "show-host-pairing-demo"; |
226 | 222 |
227 // Sends test messages on first call to RequestUpdate (stub only). | 223 // Sends test messages on first call to RequestUpdate (stub only). |
228 const char kSmsTestMessages[] = "sms-test-messages"; | 224 const char kSmsTestMessages[] = "sms-test-messages"; |
229 | 225 |
230 // Indicates that a stub implementation of CrosSettings that stores settings in | 226 // Indicates that a stub implementation of CrosSettings that stores settings in |
231 // memory without signing should be used, treating current user as the owner. | 227 // memory without signing should be used, treating current user as the owner. |
232 // This option is for testing the chromeos build of chrome on the desktop only. | 228 // This option is for testing the chromeos build of chrome on the desktop only. |
233 const char kStubCrosSettings[] = "stub-cros-settings"; | 229 const char kStubCrosSettings[] = "stub-cros-settings"; |
234 | 230 |
235 // Enables animated transitions during first-run tutorial. | 231 // Enables animated transitions during first-run tutorial. |
236 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 232 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
237 | 233 |
238 // Forces first-run UI to be shown for every login. | 234 // Forces first-run UI to be shown for every login. |
239 const char kForceFirstRunUI[] = "force-first-run-ui"; | 235 const char kForceFirstRunUI[] = "force-first-run-ui"; |
240 | 236 |
241 // Enables testing for auto update UI. | 237 // Enables testing for auto update UI. |
242 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 238 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
243 | 239 |
244 // Screenshot testing: specifies the directory where the golden screenshots are | 240 // Screenshot testing: specifies the directory where the golden screenshots are |
245 // stored. | 241 // stored. |
246 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; | 242 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; |
247 | 243 |
248 // Screenshot testing: specifies the directoru where artifacts will be stored. | 244 // Screenshot testing: specifies the directoru where artifacts will be stored. |
249 const char kArtifactsDir[] = "artifacts-dir"; | 245 const char kArtifactsDir[] = "artifacts-dir"; |
250 | 246 |
251 } // namespace switches | 247 } // namespace switches |
252 } // namespace chromeos | 248 } // namespace chromeos |
OLD | NEW |