Index: tools/telemetry/telemetry/page/actions/action_runner.py |
diff --git a/tools/telemetry/telemetry/page/actions/action_runner.py b/tools/telemetry/telemetry/page/actions/action_runner.py |
index e937c315e11761457337f6b1339c65802eacbc09..50f2999a175cc055e7fe1d147b9cd33c2578c036 100644 |
--- a/tools/telemetry/telemetry/page/actions/action_runner.py |
+++ b/tools/telemetry/telemetry/page/actions/action_runner.py |
@@ -18,9 +18,8 @@ class ActionRunner(object): |
# TODO(nednguyen): remove this (or make private) when |
# crbug.com/361809 is marked fixed |
def RunAction(self, action): |
- if not action.WillWaitAfterRun(): |
- action.WillRunAction(self._tab) |
- action.RunActionAndMaybeWait(self._tab) |
+ action.WillRunAction(self._tab) |
+ action.RunAction(self._tab) |
def BeginInteraction(self, label, is_smooth=False, is_responsive=False): |
"""Marks the beginning of an interaction record. |