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

Unified Diff: tools/perf/metrics/io.py

Issue 23512005: BrowserOptions.extra_browser_args is now a set. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: AppendExtraBrowserArgs 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
Index: tools/perf/metrics/io.py
diff --git a/tools/perf/metrics/io.py b/tools/perf/metrics/io.py
index a52089d583bb4c419baca672869c0bc78bdfc5af..d0a1da6689363d547f9ac44495bd5b0bb8706f4e 100644
--- a/tools/perf/metrics/io.py
+++ b/tools/perf/metrics/io.py
@@ -9,7 +9,7 @@ class IOMetric(Metric):
@classmethod
def CustomizeBrowserOptions(cls, options):
- options.AppendExtraBrowserArg('--no-sandbox')
+ options.extra_browser_args.add('--no-sandbox')
tonyg 2013/09/05 00:26:15 Don't we want to be using AppendExtraBrowserArgs h
achuithb 2013/09/05 00:37:11 Done.
def Start(self, page, tab):
raise NotImplementedError()

Powered by Google App Engine
This is Rietveld 408576698