Index: tools/telemetry/telemetry/page/page_test.py |
diff --git a/tools/telemetry/telemetry/page/page_test.py b/tools/telemetry/telemetry/page/page_test.py |
index 4e04bb19f12ab21b0193eef9b844d47b74e2d26f..4a8497b6e8a6d53edaa54b41fd6f8d9235f18cd8 100644 |
--- a/tools/telemetry/telemetry/page/page_test.py |
+++ b/tools/telemetry/telemetry/page/page_test.py |
@@ -234,7 +234,7 @@ class PageTest(command_line.Command): |
def RunPage(self, page, tab, results): |
# Run actions. |
interactive = self.options and self.options.interactive |
- action_runner = action_runner_module.ActionRunner(page, tab, self) |
+ action_runner = action_runner_module.ActionRunner(tab) |
self.WillRunActions(page, tab) |
if interactive: |
action_runner.RunAction(interact.InteractAction()) |
@@ -255,7 +255,7 @@ class PageTest(command_line.Command): |
Runs the 'navigate_steps' page attribute as a compound action. |
""" |
- action_runner = action_runner_module.ActionRunner(page, tab, None) |
+ action_runner = action_runner_module.ActionRunner(tab) |
page.RunNavigateSteps(action_runner) |
def IsExiting(self): |