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

Unified Diff: tools/perf/measurements/session_restore_with_url.py

Issue 637153002: telemetry: Remove command line args from page test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Suppress pylint E1003 Created 6 years, 1 month 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/perf/measurements/session_restore_with_url.py
diff --git a/tools/perf/measurements/session_restore_with_url.py b/tools/perf/measurements/session_restore_with_url.py
index 40f5ce2ee8f413e55e28dd1113668ce10cfd568f..d31ca1b88d776e1f1372e0bfe04e58fc604d68a0 100644
--- a/tools/perf/measurements/session_restore_with_url.py
+++ b/tools/perf/measurements/session_restore_with_url.py
@@ -7,9 +7,9 @@ from measurements import session_restore
class SessionRestoreWithUrl(session_restore.SessionRestore):
- def __init__(self):
+ def __init__(self, cold=False):
super(SessionRestoreWithUrl, self).__init__(
- action_name_to_run='RunNavigateSteps')
+ cold=cold, action_name_to_run='RunNavigateSteps')
def CanRunForPage(self, page):
# Run for every page in the page set that has a startup url.

Powered by Google App Engine
This is Rietveld 408576698