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

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

Issue 945393002: Adding support for diagonal scrolling to telemetry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed a bug which would take the minimum of two numbers (even though one would likely be negative).… Created 5 years, 10 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 1d832b7e589b0c7492d705165f90093ce37416a4..941ada943661daf64092401c55f48f25148b9dc5 100644
--- a/tools/perf/benchmarks/smoothness.py
+++ b/tools/perf/benchmarks/smoothness.py
@@ -180,6 +180,18 @@ class SmoothnessToughPinchZoomCases(benchmark.Benchmark):
return 'smoothness.tough_pinch_zoom_cases'
+@benchmark.Enabled('android', 'chromeos')
+class SmoothnessToughScrollingWhileZoomedInCases(benchmark.Benchmark):
+ """Measures rendering statistics for pinch-zooming followed by 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