| Index: tools/telemetry/telemetry/page/actions/tap.py
|
| diff --git a/tools/telemetry/telemetry/page/actions/tap.py b/tools/telemetry/telemetry/page/actions/tap.py
|
| index 7859eedc784105f787d20def17f22d242b7e4196..a458dc0bc843f9c1742d9fc0f57634f8914c77f7 100644
|
| --- a/tools/telemetry/telemetry/page/actions/tap.py
|
| +++ b/tools/telemetry/telemetry/page/actions/tap.py
|
| @@ -102,13 +102,3 @@ class TapAction(GestureAction):
|
| self.TapSelectedElement(tab, js_cmd)
|
|
|
| tab.WaitForJavaScriptExpression('window.__tapActionDone', 60)
|
| -
|
| - def CanBeBound(self):
|
| - return True
|
| -
|
| - def BindMeasurementJavaScript(self, tab, start_js, stop_js):
|
| - # Make the tap action start and stop measurement automatically.
|
| - tab.ExecuteJavaScript("""
|
| - window.__tapAction.beginMeasuringHook = function() { %s };
|
| - window.__tapAction.endMeasuringHook = function() { %s };
|
| - """ % (start_js, stop_js))
|
|
|