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

Unified Diff: tools/perf/measurements/blink_perf.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/benchmarks/spaceport.py ('k') | tools/perf/measurements/image_decoding.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/measurements/blink_perf.py
diff --git a/tools/perf/measurements/blink_perf.py b/tools/perf/measurements/blink_perf.py
index a2ab366d7054823224d2adfdf9e3b2c3689ae49e..98ada31831d088508e4f7b74a753a3425cd10acf 100644
--- a/tools/perf/measurements/blink_perf.py
+++ b/tools/perf/measurements/blink_perf.py
@@ -81,8 +81,10 @@ class BlinkPerf(page_measurement.PageMeasurement):
page.script_to_evaluate_on_commit = self._blink_perf_js
def CustomizeBrowserOptions(self, options):
- options.AppendExtraBrowserArg('--js-flags=--expose_gc')
- options.AppendExtraBrowserArg('--enable-experimental-web-platform-features')
+ options.AppendExtraBrowserArgs([
+ '--js-flags=--expose_gc',
+ '--enable-experimental-web-platform-features'
+ ])
def MeasurePage(self, page, tab, results):
def _IsDone():
« no previous file with comments | « tools/perf/benchmarks/spaceport.py ('k') | tools/perf/measurements/image_decoding.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698