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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 // Enables MTP support in Files.app. | 88 // Enables MTP support in Files.app. |
89 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp"; | 89 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp"; |
90 | 90 |
91 // Enables notifications about captive portals in session. | 91 // Enables notifications about captive portals in session. |
92 const char kEnableNetworkPortalNotification[] = | 92 const char kEnableNetworkPortalNotification[] = |
93 "enable-network-portal-notification"; | 93 "enable-network-portal-notification"; |
94 | 94 |
95 // Enables activation of voice search by saying 'Ok Google'. | 95 // Enables activation of voice search by saying 'Ok Google'. |
96 const char kEnableOkGoogleVoiceSearch[] = "enable-ok-google-voice-search"; | 96 const char kEnableOkGoogleVoiceSearch[] = "enable-ok-google-voice-search"; |
97 | 97 |
| 98 // Enables using screenshots in tests. |
| 99 const char kEnableScreenshotTesting[] = "enable-screenshot-testing"; |
| 100 |
98 // Enables touchpad three-finger-click as middle button. | 101 // Enables touchpad three-finger-click as middle button. |
99 const char kEnableTouchpadThreeFingerClick[] | 102 const char kEnableTouchpadThreeFingerClick[] |
100 = "enable-touchpad-three-finger-click"; | 103 = "enable-touchpad-three-finger-click"; |
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 |
103 // than the kiosk app mode. | 106 // than the kiosk app mode. |
104 const char kEnableKioskMode[] = "enable-kiosk-mode"; | 107 const char kEnableKioskMode[] = "enable-kiosk-mode"; |
105 | 108 |
106 // Enables request of tablet site (via user agent override). | 109 // Enables request of tablet site (via user agent override). |
107 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; | 110 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 | 230 |
228 // Disables SAML sigin support. | 231 // Disables SAML sigin support. |
229 const char kDisableSamlSignin[] = "disable-saml-signin"; | 232 const char kDisableSamlSignin[] = "disable-saml-signin"; |
230 | 233 |
231 // Enables animated transitions during first-run tutorial. | 234 // Enables animated transitions during first-run tutorial. |
232 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 235 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
233 | 236 |
234 // Forces first-run UI to be shown for every login. | 237 // Forces first-run UI to be shown for every login. |
235 const char kForceFirstRunUI[] = "force-first-run-ui"; | 238 const char kForceFirstRunUI[] = "force-first-run-ui"; |
236 | 239 |
| 240 // Turns on screenshot testing and specifies the directory where the |
| 241 // golden screenshots are stored. |
| 242 const char kScreenshotDestinationDir[] = "screenshot-destination-dir"; |
| 243 |
237 // Enables testing for auto update UI. | 244 // Enables testing for auto update UI. |
238 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 245 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
239 | 246 |
240 } // namespace switches | 247 } // namespace switches |
241 } // namespace chromeos | 248 } // namespace chromeos |
OLD | NEW |