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

Unified Diff: tools/perf/metrics/v8_object_stats.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/metrics/smoothness.py ('k') | tools/telemetry/telemetry/core/browser_options.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/metrics/v8_object_stats.py
diff --git a/tools/perf/metrics/v8_object_stats.py b/tools/perf/metrics/v8_object_stats.py
index 22243252e3592e880dc0ef14a3776a9b9749cce4..ebb733f8f388c84dfef8eab8ad2b15045f41d37c 100644
--- a/tools/perf/metrics/v8_object_stats.py
+++ b/tools/perf/metrics/v8_object_stats.py
@@ -160,13 +160,14 @@ class V8ObjectStatsMetric(Metric):
@classmethod
def CustomizeBrowserOptions(cls, options):
- options.AppendExtraBrowserArg('--enable-stats-table')
- options.AppendExtraBrowserArg('--enable-benchmarking')
- options.AppendExtraBrowserArg(
- '--js-flags=--track_gc_object_stats --expose_gc')
- # TODO(rmcilroy): This is needed for --enable-stats-table. Update once
- # https://codereview.chromium.org/22911027/ lands.
- options.AppendExtraBrowserArg('--no-sandbox')
+ options.AppendExtraBrowserArgs([
+ '--enable-stats-table',
+ '--enable-benchmarking',
+ '--js-flags=--track_gc_object_stats --expose_gc',
+ # TODO(rmcilroy): This is needed for --enable-stats-table. Update once
+ # https://codereview.chromium.org/22911027/ lands.
+ '--no-sandbox'
+ ])
@staticmethod
def GetV8StatsTable(tab, counters=None):
« no previous file with comments | « tools/perf/metrics/smoothness.py ('k') | tools/telemetry/telemetry/core/browser_options.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698