| 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 fb7efa7fbf6cc354c3f97370fadf80f47d90d6c1..c097ea7b78a6f84411c5259dcdb9226d0c5bb37b 100644
|
| --- a/tools/telemetry/telemetry/core/browser_options.py
|
| +++ b/tools/telemetry/telemetry/core/browser_options.py
|
| @@ -203,6 +203,11 @@
|
| # performance measurements.
|
| self.disable_component_extensions_with_background_pages = True
|
|
|
| + # Whether to use the new code path for choosing an ephemeral port for
|
| + # DevTools. The bots set this to true. When Chrome 37 reaches stable,
|
| + # remove this setting and the old code path. http://crbug.com/379980
|
| + self.use_devtools_active_port = False
|
| +
|
| def __repr__(self):
|
| return str(sorted(self.__dict__.items()))
|
|
|
| @@ -278,6 +283,7 @@
|
| 'profile_type',
|
| 'show_stdout',
|
| 'synthetic_gesture_source_type',
|
| + 'use_devtools_active_port',
|
| ]
|
| for o in browser_options_list:
|
| a = getattr(finder_options, o, None)
|
|
|