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

Unified Diff: tools/telemetry/telemetry/page/actions/pinch_unittest.py

Issue 356243002: Delete gesture_action.py and remove support for JSON attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and address review comments. Created 6 years, 5 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/telemetry/telemetry/page/actions/pinch.py ('k') | tools/telemetry/telemetry/page/actions/scroll.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/page/actions/pinch_unittest.py
diff --git a/tools/telemetry/telemetry/page/actions/pinch_unittest.py b/tools/telemetry/telemetry/page/actions/pinch_unittest.py
index c510082506089ced33a8edd44a986fd39dea2a1e..f5dc65aa62b68183d14e15cf02391d8b26e15385 100644
--- a/tools/telemetry/telemetry/page/actions/pinch_unittest.py
+++ b/tools/telemetry/telemetry/page/actions/pinch_unittest.py
@@ -3,7 +3,7 @@
# found in the LICENSE file.
from telemetry.page.actions import action_runner as action_runner_module
-from telemetry.page.actions.gesture_action import GestureAction
+from telemetry.page.actions import page_action
from telemetry.unittest import tab_test_case
@@ -13,7 +13,7 @@ class PinchActionTest(tab_test_case.TabTestCase):
def testPinchByApiCalledWithCorrectArguments(self):
self.Navigate('blank.html')
- if not GestureAction.IsGestureSourceTypeSupported(self._tab, 'touch'):
+ if not page_action.IsGestureSourceTypeSupported(self._tab, 'touch'):
return
action_runner = action_runner_module.ActionRunner(self._tab)
« no previous file with comments | « tools/telemetry/telemetry/page/actions/pinch.py ('k') | tools/telemetry/telemetry/page/actions/scroll.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698