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

Unified Diff: telemetry/telemetry/internal/browser/browser_options.py

Issue 2965383002: WIP: Add support for additional flag-specified tracing categories. (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
Index: telemetry/telemetry/internal/browser/browser_options.py
diff --git a/telemetry/telemetry/internal/browser/browser_options.py b/telemetry/telemetry/internal/browser/browser_options.py
index 80765ea09fabba0c5678815257c1bfe2cf0ba0d3..96fa802cc150feb8ef18092a4849a8346b43e2c6 100644
--- a/telemetry/telemetry/internal/browser/browser_options.py
+++ b/telemetry/telemetry/internal/browser/browser_options.py
@@ -114,6 +114,12 @@ class BrowserFinderOptions(optparse.Values):
group.add_option('--print-bootstrap-deps',
action='store_true',
help='Output bootstrap deps list.')
+ group.add_option(
+ '--extra-chrome-categories', dest='extra_chrome_categories',
+ help='Filter string to enable additional chrome tracing categories.')
sullivan 2017/07/07 14:58:47 Again, documentation on filter strings would be aw
charliea (OOO until 10-5) 2017/07/07 20:07:00 "Filter strings are 1) a way to specify which trac
+ group.add_option(
+ '--extra-atrace-categories', dest='extra_atrace_categories',
sullivan 2017/07/07 14:58:47 Any ideas where to find documentation on available
charliea (OOO until 10-5) 2017/07/07 20:06:59 Apparently you can get the documentation from atra
+ help='Comma-separated list of extra atrace categories.')
parser.add_option_group(group)
# Platform options

Powered by Google App Engine
This is Rietveld 408576698