Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(144)

Side by Side Diff: chromeos/chromeos_switches.cc

Issue 405093003: Taking screenshots while running a test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: last DCHECK replaced with DCHECK_CURRENTLY_ON Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chromeos/chromeos_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chromeos/chromeos_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698