| Index: tools/perf/benchmarks/memory.py
|
| diff --git a/tools/perf/benchmarks/memory.py b/tools/perf/benchmarks/memory.py
|
| index a41d700f1f00a0918b0bf267d5ae303b31f09e95..b4b8370b68782fc5c756357310eaa2be994f4086 100644
|
| --- a/tools/perf/benchmarks/memory.py
|
| +++ b/tools/perf/benchmarks/memory.py
|
| @@ -25,3 +25,17 @@ 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'
|
|
|