Index: tools/telemetry/telemetry/core/browser_options.py |
diff --git a/tools/telemetry/telemetry/core/browser_options.py b/tools/telemetry/telemetry/core/browser_options.py |
index c097ea7b78a6f84411c5259dcdb9226d0c5bb37b..204f84b375ed506c836573176d722754111b2f62 100644 |
--- a/tools/telemetry/telemetry/core/browser_options.py |
+++ b/tools/telemetry/telemetry/core/browser_options.py |
@@ -115,6 +115,13 @@ class BrowserFinderOptions(optparse.Values): |
group.add_option('--print-bootstrap-deps', |
action='store_true', |
help='Output bootstrap deps list.') |
+ group.add_option('--disable-crash-service', |
+ dest='disable_crash_service', |
+ default=False, |
+ action='store_true', |
+ help='Whether to disable crash service. NOTE: this flag ' |
+ 'is added temporarily for crbug.com/424024, and will be ' |
+ 'deprecated as soon as the bug is marked fixed.') |
parser.add_option_group(group) |
# Platform options |
@@ -276,6 +283,7 @@ class BrowserOptions(object): |
def UpdateFromParseResults(self, finder_options): |
"""Copies our options from finder_options""" |
browser_options_list = [ |
+ 'disable_crash_service', |
'extra_browser_args_as_string', |
'extra_wpr_args_as_string', |
'netsim', |