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

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

Issue 964903002: Moving yahoo_sport into pathological pageset and adding sync scroll. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: WPR file updated 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..8b12daa0db2952ef5e0dd518c9003c0ee1d5aaf3 100644
--- a/tools/perf/benchmarks/smoothness.py
+++ b/tools/perf/benchmarks/smoothness.py
@@ -260,3 +260,19 @@ class SmoothnessPathologicalMobileSites(benchmark.Benchmark):
@classmethod
def Name(cls):
return 'smoothness.pathological_mobile_sites'
+
+
+@benchmark.Enabled('android')
+class SmoothnessSyncScrollPathologicalMobileSites(benchmark.Benchmark):
+ """Measures task execution statistics while sync-scrolling pathological sites.
+ """
+ tag = 'sync_scroll'
+ test = smoothness.Smoothness
+ page_set = page_sets.PathologicalMobileSitesPageSet
+
+ def CustomizeBrowserOptions(self, options):
+ silk_flags.CustomizeBrowserOptionsForSyncScrolling(options)
+
+ @classmethod
+ def Name(cls):
+ return 'smoothness.sync_scroll.pathological_mobile_sites'

Powered by Google App Engine
This is Rietveld 408576698