Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Unified Diff: tools/telemetry/telemetry/page/actions/media_action.py

Issue 186593007: Remove href_change and navigate from wait action (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/telemetry/telemetry/page/actions/media_action.py
diff --git a/tools/telemetry/telemetry/page/actions/media_action.py b/tools/telemetry/telemetry/page/actions/media_action.py
index cb563acdc7c2788882987e524922018a88a42eef..85da6ed35fc9202cdbb898a2fa51f1a69089e744 100644
--- a/tools/telemetry/telemetry/page/actions/media_action.py
+++ b/tools/telemetry/telemetry/page/actions/media_action.py
@@ -16,8 +16,8 @@ class MediaAction(page_action.PageAction):
"""Loads the common media action JS code prior to running the action."""
self.LoadJS(tab, 'media_action.js')
- def RunAction(self, page, tab, previous_action):
- super(MediaAction, self).RunAction(page, tab, previous_action)
+ def RunAction(self, page, tab):
+ super(MediaAction, self).RunAction(page, tab)
def LoadJS(self, tab, js_file_name):
"""Loads and executes a JS file in the tab."""
« no previous file with comments | « tools/telemetry/telemetry/page/actions/loop_unittest.py ('k') | tools/telemetry/telemetry/page/actions/navigate.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698