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

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

Issue 1013803003: [Telemetry] Remove is_smooth flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix failing test Created 5 years, 9 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 | « 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 00fcb6eef492d92c42fd8f4ce2afb8502e7a42e0..9da9afc1786a1516efeb16972d5ae3e98af799bf 100644
--- a/tools/perf/page_sets/tough_scheduling_cases.py
+++ b/tools/perf/page_sets/tough_scheduling_cases.py
@@ -15,7 +15,7 @@ class ToughSchedulingCasesPage(page_module.Page):
def RunPageInteractions(self, action_runner):
interaction = action_runner.BeginGestureInteraction(
- 'ScrollAction', is_smooth=True)
+ 'ScrollAction')
action_runner.ScrollPage()
interaction.End()
@@ -309,7 +309,7 @@ class Page20(ToughSchedulingCasesPage):
def RunPageInteractions(self, action_runner):
interaction = action_runner.BeginGestureInteraction(
- 'ScrollAction', is_smooth=True)
+ 'ScrollAction')
action_runner.ScrollElement(
selector='#card',
use_touch=True,
@@ -340,12 +340,12 @@ class EmptyTouchHandlerPage(ToughSchedulingCasesPage):
def RunPageInteractions(self, action_runner):
if self.bounce:
interaction = action_runner.BeginGestureInteraction(
- 'ScrollBounceAction', is_smooth=True)
+ 'ScrollBounceAction')
action_runner.ScrollBouncePage()
interaction.End()
else:
interaction = action_runner.BeginGestureInteraction(
- 'ScrollAction', is_smooth=True)
+ 'ScrollAction')
# Speed and distance are tuned to run exactly as long as a scroll
# bounce.
action_runner.ScrollPage(use_touch=True, speed_in_pixels_per_second=400,
@@ -364,7 +364,7 @@ class SynchronizedScrollOffsetPage(ToughSchedulingCasesPage):
def RunPageInteractions(self, action_runner):
interaction = action_runner.BeginGestureInteraction(
- 'ScrollBounceAction', is_smooth=True)
+ 'ScrollBounceAction')
action_runner.ScrollBouncePage()
interaction.End()
« 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