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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 // Enables MTP support in Files.app. | 89 // Enables MTP support in Files.app. |
90 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp"; | 90 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp"; |
91 | 91 |
92 // Enables notifications about captive portals in session. | 92 // Enables notifications about captive portals in session. |
93 const char kEnableNetworkPortalNotification[] = | 93 const char kEnableNetworkPortalNotification[] = |
94 "enable-network-portal-notification"; | 94 "enable-network-portal-notification"; |
95 | 95 |
96 // Enables activation of voice search by saying 'Ok Google'. | 96 // Enables activation of voice search by saying 'Ok Google'. |
97 const char kEnableOkGoogleVoiceSearch[] = "enable-ok-google-voice-search"; | 97 const char kEnableOkGoogleVoiceSearch[] = "enable-ok-google-voice-search"; |
98 | 98 |
99 // Enables using screenshots in tests. | |
100 const char kEnableScreenshotTesting[] = "enable-screenshot-testing"; | |
101 | |
102 // Enables touchpad three-finger-click as middle button. | 99 // Enables touchpad three-finger-click as middle button. |
103 const char kEnableTouchpadThreeFingerClick[] | 100 const char kEnableTouchpadThreeFingerClick[] |
104 = "enable-touchpad-three-finger-click"; | 101 = "enable-touchpad-three-finger-click"; |
105 | 102 |
| 103 // Enables using screenshots in tests and seets mode. |
| 104 const char kEnableScreenshotTestingWithMode[] = |
| 105 "enable-screenshot-testing-with-mode"; |
| 106 |
106 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather | 107 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather |
107 // than the kiosk app mode. | 108 // than the kiosk app mode. |
108 const char kEnableKioskMode[] = "enable-kiosk-mode"; | 109 const char kEnableKioskMode[] = "enable-kiosk-mode"; |
109 | 110 |
110 // Enables request of tablet site (via user agent override). | 111 // Enables request of tablet site (via user agent override). |
111 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; | 112 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; |
112 | 113 |
113 // Whether to enable forced enterprise re-enrollment. | 114 // Whether to enable forced enterprise re-enrollment. |
114 const char kEnterpriseEnableForcedReEnrollment[] = | 115 const char kEnterpriseEnableForcedReEnrollment[] = |
115 "enterprise-enable-forced-re-enrollment"; | 116 "enterprise-enable-forced-re-enrollment"; |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 // memory without signing should be used, treating current user as the owner. | 234 // memory without signing should be used, treating current user as the owner. |
234 // This option is for testing the chromeos build of chrome on the desktop only. | 235 // This option is for testing the chromeos build of chrome on the desktop only. |
235 const char kStubCrosSettings[] = "stub-cros-settings"; | 236 const char kStubCrosSettings[] = "stub-cros-settings"; |
236 | 237 |
237 // Enables animated transitions during first-run tutorial. | 238 // Enables animated transitions during first-run tutorial. |
238 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 239 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
239 | 240 |
240 // Forces first-run UI to be shown for every login. | 241 // Forces first-run UI to be shown for every login. |
241 const char kForceFirstRunUI[] = "force-first-run-ui"; | 242 const char kForceFirstRunUI[] = "force-first-run-ui"; |
242 | 243 |
243 // Turns on screenshot testing and specifies the directory where the | |
244 // golden screenshots are stored. | |
245 const char kScreenshotDestinationDir[] = "screenshot-destination-dir"; | |
246 | |
247 // Enables testing for auto update UI. | 244 // Enables testing for auto update UI. |
248 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 245 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
249 | 246 |
| 247 // Screenshot testing: specifies the directory where the golden screenshots are |
| 248 // stored. |
| 249 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; |
| 250 |
| 251 // Screenshot testing: specifies the directoru where artifacts will be stored. |
| 252 const char kArtifactsDir[] = "artifacts-dir"; |
| 253 |
250 } // namespace switches | 254 } // namespace switches |
251 } // namespace chromeos | 255 } // namespace chromeos |
OLD | NEW |