Index: tools/telemetry/telemetry/page/actions/pinch.py |
diff --git a/tools/telemetry/telemetry/page/actions/pinch.py b/tools/telemetry/telemetry/page/actions/pinch.py |
index d4a2b532c26ba86c03d9cd5815b3b10ed15cb489..86c5c9e3217e8e4feac82319954aa0d0429caccc 100644 |
--- a/tools/telemetry/telemetry/page/actions/pinch.py |
+++ b/tools/telemetry/telemetry/page/actions/pinch.py |
@@ -82,13 +82,3 @@ class PinchAction(GestureAction): |
speed)) |
tab.WaitForJavaScriptExpression('window.__pinchActionDone', 60) |
- |
- def CanBeBound(self): |
- return True |
- |
- def BindMeasurementJavaScript(self, tab, start_js, stop_js): |
- # Make the pinch action start and stop measurement automatically. |
- tab.ExecuteJavaScript(""" |
- window.__pinchAction.beginMeasuringHook = function() { %s }; |
- window.__pinchAction.endMeasuringHook = function() { %s }; |
- """ % (start_js, stop_js)) |