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

Unified Diff: tools/perf/page_sets/tough_scheduling_cases.py

Issue 826113003: [Telemetry] Rename RunSmoothness to RunPageInteractions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 | « tools/perf/page_sets/tough_pinch_zoom_cases.py ('k') | tools/perf/page_sets/tough_scrolling_cases.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/tough_scheduling_cases.py
diff --git a/tools/perf/page_sets/tough_scheduling_cases.py b/tools/perf/page_sets/tough_scheduling_cases.py
index d248a2ef35336369091ec843cd740c299e712182..96574e031a7e36fada615f1fecee5dda9f453b6d 100644
--- a/tools/perf/page_sets/tough_scheduling_cases.py
+++ b/tools/perf/page_sets/tough_scheduling_cases.py
@@ -13,7 +13,7 @@ class ToughSchedulingCasesPage(page_module.Page):
self.user_agent_type = 'mobile'
self.archive_data_file = 'data/tough_scheduling_cases.json'
- def RunSmoothness(self, action_runner):
+ def RunPageInteractions(self, action_runner):
interaction = action_runner.BeginGestureInteraction(
'ScrollAction', is_smooth=True)
action_runner.ScrollPage()
@@ -295,7 +295,7 @@ class Page19(ToughSchedulingCasesPage):
url='file://tough_scheduling_cases/split_animation.html',
page_set=page_set)
- def RunSmoothness(self, action_runner):
+ def RunPageInteractions(self, action_runner):
action_runner.Wait(3)
@@ -308,7 +308,7 @@ class Page20(ToughSchedulingCasesPage):
url='file://tough_scheduling_cases/simple_touch_drag.html',
page_set=page_set)
- def RunSmoothness(self, action_runner):
+ def RunPageInteractions(self, action_runner):
interaction = action_runner.BeginGestureInteraction(
'ScrollAction', is_smooth=True)
action_runner.ScrollElement(
@@ -338,7 +338,7 @@ class EmptyTouchHandlerPage(ToughSchedulingCasesPage):
self.bounce = bounce
- def RunSmoothness(self, action_runner):
+ def RunPageInteractions(self, action_runner):
if self.bounce:
interaction = action_runner.BeginGestureInteraction(
'ScrollBounceAction', is_smooth=True)
@@ -363,7 +363,7 @@ class SynchronizedScrollOffsetPage(ToughSchedulingCasesPage):
url='file://tough_scheduling_cases/sync_scroll_offset.html',
page_set=page_set)
- def RunSmoothness(self, action_runner):
+ def RunPageInteractions(self, action_runner):
interaction = action_runner.BeginGestureInteraction(
'ScrollBounceAction', is_smooth=True)
action_runner.ScrollBouncePage()
« no previous file with comments | « tools/perf/page_sets/tough_pinch_zoom_cases.py ('k') | tools/perf/page_sets/tough_scrolling_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698