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

Unified Diff: tools/perf/perf_tools/memory_benchmark.py

Issue 12389073: Collect tab timing information for use in telementry-based startup tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: formatting/compile fix Created 7 years, 9 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/perf_tools/memory_benchmark.py
diff --git a/tools/perf/perf_tools/memory_benchmark.py b/tools/perf/perf_tools/memory_benchmark.py
index 6c051d666672cba8201ff3e620e7eedb1f7bd218..7180512d04f24a0c217db4a44bc4c334de158a35 100644
--- a/tools/perf/perf_tools/memory_benchmark.py
+++ b/tools/perf/perf_tools/memory_benchmark.py
@@ -29,7 +29,7 @@ class MemoryBenchmark(page_benchmark.PageBenchmark):
h.Start(page, tab)
def CustomizeBrowserOptions(self, options):
- options.AppendExtraBrowserArg('--dom-automation')
+ options.AppendExtraBrowserArg('--enable-stats-collection-bindings')
# For a hard-coded set of Google pages (such as GMail), we produce custom
# memory histograms (V8.Something_gmail) instead of the generic histograms
# (V8.Something), if we detect that a renderer is only rendering this page
@@ -38,7 +38,8 @@ class MemoryBenchmark(page_benchmark.PageBenchmark):
# pages.
options.AppendExtraBrowserArg('--disable-histogram-customizer')
options.AppendExtraBrowserArg('--memory-metrics')
- options.AppendExtraBrowserArg('--reduce-security-for-dom-automation-tests')
+ options.AppendExtraBrowserArg(
+ '--reduce-security-for-stats-collection-tests')
def CanRunForPage(self, page):
return hasattr(page, 'stress_memory')

Powered by Google App Engine
This is Rietveld 408576698