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

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

Issue 1114713002: Add a smoothness benchmark with slimming paint enabled (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/smoothness.py
diff --git a/tools/perf/benchmarks/smoothness.py b/tools/perf/benchmarks/smoothness.py
index c8379c4990d5c8f32d0ba72ef017fd3c93886e4c..dcbdf7ebe55fcc68e00e9a713dd937fe00f2ae62 100644
--- a/tools/perf/benchmarks/smoothness.py
+++ b/tools/perf/benchmarks/smoothness.py
@@ -102,6 +102,23 @@ class SmoothnessKeyMobileSites(benchmark.Benchmark):
return 'smoothness.key_mobile_sites_smooth'
+@benchmark.Disabled('mac', 'win', 'android')
+class SmoothnessKeyMobileSitesWithSlimmingPaint(benchmark.Benchmark):
+ """Measures smoothness on key mobile sites with --enable-slimming-paint.
+
+ http://www.chromium.org/developers/design-documents/rendering-benchmarks
+ """
+ test = smoothness.Smoothness
+ page_set = page_sets.KeyMobileSitesSmoothPageSet
+
+ def CustomizeBrowserOptions(self, options):
+ options.AppendExtraBrowserArgs(['--enable-slimming-paint'])
+
+ @classmethod
+ def Name(cls):
+ return 'smoothness.key_mobile_sites_with_slimming_paint_smooth'
+
+
class SmoothnessToughAnimationCases(benchmark.Benchmark):
test = smoothness.Smoothness
page_set = page_sets.ToughAnimationCasesPageSet
« 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