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

Unified Diff: tools/telemetry/telemetry/core/platform/profiler/perf_profiler.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/telemetry/telemetry/core/platform/profiler/perf_profiler.py
diff --git a/tools/telemetry/telemetry/core/platform/profiler/perf_profiler.py b/tools/telemetry/telemetry/core/platform/profiler/perf_profiler.py
index cbe770fc440387a21e07458b574af2fc8f023241..b265095fbed4566fdf8488347911134223a76bd5 100644
--- a/tools/telemetry/telemetry/core/platform/profiler/perf_profiler.py
+++ b/tools/telemetry/telemetry/core/platform/profiler/perf_profiler.py
@@ -92,8 +92,10 @@ class PerfProfiler(profiler.Profiler):
@classmethod
def CustomizeBrowserOptions(cls, options):
- options.AppendExtraBrowserArg('--no-sandbox')
- options.AppendExtraBrowserArg('--allow-sandbox-debugging')
+ options.AppendExtraBrowserArgs([
+ '--no-sandbox',
+ '--allow-sandbox-debugging',
+ ])
def CollectProfile(self):
output_files = []

Powered by Google App Engine
This is Rietveld 408576698