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

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

Issue 999243003: Adding tests for diagonal scrolling in telemetry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing since some files have moved. 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
Index: tools/perf/benchmarks/smoothness.py
diff --git a/tools/perf/benchmarks/smoothness.py b/tools/perf/benchmarks/smoothness.py
index 067825bd7515360db74274cdd2f29ee7e1be1e32..aa0c6c7251b1cd3de88687a5228d275f0f61d083 100644
--- a/tools/perf/benchmarks/smoothness.py
+++ b/tools/perf/benchmarks/smoothness.py
@@ -216,6 +216,17 @@ class SmoothnessToughPinchZoomCases(benchmark.Benchmark):
return 'smoothness.tough_pinch_zoom_cases'
+@benchmark.Enabled('android', 'chromeos')
nednguyen 2015/04/06 21:31:25 Maybe just enable this on chromeos in this patch.
+class SmoothnessToughScrollingWhileZoomedInCases(benchmark.Benchmark):
+ """Measures rendering statistics for pinch-zooming then diagonal scrolling"""
+ test = smoothness.Smoothness
+ page_set = page_sets.ToughScrollingWhileZoomedInCasesPageSet
+
+ @classmethod
+ def Name(cls):
+ return 'smoothness.tough_scrolling_while_zoomed_in_cases'
+
+
@benchmark.Enabled('android')
class SmoothnessPolymer(benchmark.Benchmark):
"""Measures rendering statistics for Polymer cases.

Powered by Google App Engine
This is Rietveld 408576698