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

Unified Diff: tools/perf/benchmarks/memory.py

Issue 1066223002: Reland: Track memory consumption of SP on top 7 sites (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Two blank lines Created 5 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/memory.py
diff --git a/tools/perf/benchmarks/memory.py b/tools/perf/benchmarks/memory.py
index b5eb386b4e08d1b1fbb2c9b89a775f18fab6e089..44b900a9233bd7a0a6af1f33e2e6ca327e0d11f3 100644
--- a/tools/perf/benchmarks/memory.py
+++ b/tools/perf/benchmarks/memory.py
@@ -26,3 +26,18 @@ class MemoryTop7Stress(benchmark.Benchmark):
@classmethod
def Name(cls):
return 'memory.top_7_stress'
+
+
+class MemoryTop7StressWithSlimmingPaint(benchmark.Benchmark):
+ """Use (recorded) real world web sites and measure memory consumption,
+ with --enable--slimming-paint."""
+
+ test = memory.Memory
+ page_set = page_sets.Top7StressPageSet
+
+ def CustomizeBrowserOptions(self, options):
+ options.AppendExtraBrowserArgs(['--enable-slimming-paint'])
+
+ @classmethod
+ def Name(cls):
+ return 'memory.top_7_stress_slimming_paint'
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698