| Index: tools/perf/measurements/startup.py
|
| diff --git a/tools/perf/measurements/startup.py b/tools/perf/measurements/startup.py
|
| index 0bb6f005a7be00d3c5ce9ceebebb74e0f0167dc5..26b4a29d32984dc8e75074c78def669c2bd4e448 100644
|
| --- a/tools/perf/measurements/startup.py
|
| +++ b/tools/perf/measurements/startup.py
|
| @@ -40,12 +40,13 @@ class Startup(page_measurement.PageMeasurement):
|
| else:
|
| self.discard_first_result = True
|
|
|
| - options.AppendExtraBrowserArg('--enable-stats-collection-bindings')
|
| + options.AppendExtraBrowserArgs([
|
| + '--enable-stats-collection-bindings',
|
|
|
| - # Old commandline flags used for reference builds.
|
| - options.AppendExtraBrowserArg('--dom-automation')
|
| - options.AppendExtraBrowserArg(
|
| - '--reduce-security-for-dom-automation-tests')
|
| + # Old commandline flags used for reference builds.
|
| + '--dom-automation',
|
| + '--reduce-security-for-dom-automation-tests'
|
| + ])
|
|
|
| def MeasurePage(self, page, tab, results):
|
| # TODO(jeremy): Remove references to
|
|
|