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

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

Issue 1106823003: Add a slimming paint version of the r&r key silk case benchmark (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/rasterize_and_record_micro.py
diff --git a/tools/perf/benchmarks/rasterize_and_record_micro.py b/tools/perf/benchmarks/rasterize_and_record_micro.py
index e7eba0e94d4466c473eac7d888072af769687cde..4ed3748dc792b0e0256ec2bd40fa0f4233dc1409 100644
--- a/tools/perf/benchmarks/rasterize_and_record_micro.py
+++ b/tools/perf/benchmarks/rasterize_and_record_micro.py
@@ -100,6 +100,24 @@ class RasterizeAndRecordMicroKeySilkCases(_RasterizeAndRecordMicro):
return page_sets.KeySilkCasesPageSet(run_no_page_interactions=True)
+@benchmark.Disabled('mac', 'win', 'android')
+@benchmark.Disabled('reference')
+class RasterizeAndRecordMicroKeySilkWithSlimmingPaint(_RasterizeAndRecordMicro):
+ """Measures rasterize and record on the silk sites with slimming paint.
+
+ http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
+
+ def CustomizeBrowserOptions(self, options):
+ options.AppendExtraBrowserArgs(['--enable-slimming-paint'])
+
+ @classmethod
+ def Name(cls):
+ return 'rasterize_and_record_micro.key_silk_cases_with_slimming_paint'
+
+ def CreatePageSet(self, options):
+ return page_sets.KeySilkCasesPageSet(run_no_page_interactions=True)
+
+
@benchmark.Enabled('android')
class RasterizeAndRecordMicroPolymer(_RasterizeAndRecordMicro):
"""Measures rasterize and record performance on the Polymer cases.
« 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