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