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

Unified Diff: trunk/src/tools/telemetry/telemetry/core/browser_options.py

Issue 14298014: Revert 194441 "Better support for chrome for cros local builds." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | trunk/src/tools/telemetry/telemetry/core/chrome/desktop_browser_backend.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/tools/telemetry/telemetry/core/browser_options.py
===================================================================
--- trunk/src/tools/telemetry/telemetry/core/browser_options.py (revision 194464)
+++ trunk/src/tools/telemetry/telemetry/core/browser_options.py (working copy)
@@ -29,6 +29,7 @@
self.extra_wpr_args = []
self.show_stdout = False
self.extensions_to_load = []
+ self.cros_desktop = False
self.cros_remote = None
self.wpr_mode = wpr_modes.WPR_OFF
@@ -102,6 +103,11 @@
group.add_option('--show-stdout',
action='store_true',
help='When possible, will display the stdout of the process')
+ # --cros-desktop is linux only.
+ if sys.platform.startswith('linux'):
+ group.add_option('--cros-desktop',
+ action='store_true',
+ help='Run ChromeOS desktop')
parser.add_option_group(group)
# Page set options
« no previous file with comments | « no previous file | trunk/src/tools/telemetry/telemetry/core/chrome/desktop_browser_backend.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698