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

Unified Diff: tools/perf/page_sets/tough_pinch_zoom_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_compositor_cases.py ('k') | tools/perf/page_sets/tough_scheduling_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_pinch_zoom_cases.py
diff --git a/tools/perf/page_sets/tough_pinch_zoom_cases.py b/tools/perf/page_sets/tough_pinch_zoom_cases.py
index 81bdde6d765aa8416b9458c7dbef4b3c13a356bb..a0067d154c78272351b81856389c105124ff296a 100644
--- a/tools/perf/page_sets/tough_pinch_zoom_cases.py
+++ b/tools/perf/page_sets/tough_pinch_zoom_cases.py
@@ -16,7 +16,7 @@ class ToughPinchZoomCasesPage(page_module.Page):
def RunPageInteractions(self, action_runner):
interaction = action_runner.BeginGestureInteraction(
- 'PinchAction', is_smooth=True)
+ 'PinchAction')
action_runner.PinchPage()
interaction.End()
@@ -70,7 +70,7 @@ class GoogleCalendarPage(ToughPinchZoomCasesPage):
def RunPageInteractions(self, action_runner):
interaction = action_runner.BeginGestureInteraction(
- 'PinchAction', is_smooth=True)
+ 'PinchAction')
action_runner.PinchPage(left_anchor_ratio=0.1, top_anchor_ratio=0.3)
interaction.End()
@@ -104,7 +104,7 @@ class GooglePlusPage(ToughPinchZoomCasesPage):
def RunPageInteractions(self, action_runner):
interaction = action_runner.BeginGestureInteraction(
- 'PinchAction', is_smooth=True)
+ 'PinchAction')
action_runner.PinchElement(selector='[id="110031535020051778989-tab-bar"]')
interaction.End()
@@ -235,7 +235,7 @@ class YahooAnswersPage(ToughPinchZoomCasesPage):
def RunPageInteractions(self, action_runner):
interaction = action_runner.BeginGestureInteraction(
- 'PinchAction', is_smooth=True)
+ 'PinchAction')
action_runner.PinchElement(selector='#ya-content-apps')
interaction.End()
« no previous file with comments | « tools/perf/page_sets/tough_compositor_cases.py ('k') | tools/perf/page_sets/tough_scheduling_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698