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

Unified Diff: tools/perf/measurements/startup.py

Issue 23512005: BrowserOptions.extra_browser_args is now a set. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 3 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 | « tools/perf/measurements/smoothness.py ('k') | tools/perf/measurements/tab_switching.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « tools/perf/measurements/smoothness.py ('k') | tools/perf/measurements/tab_switching.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698