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

Unified Diff: tools/telemetry/telemetry/core/backends/chrome/cros_browser_with_oobe.py

Issue 656303003: Telemetry: Move Web Page Replay to the platform. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update --use-live-sites tests to not use private browser property. Created 6 years, 2 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/core/backends/chrome/cros_browser_with_oobe.py
diff --git a/tools/telemetry/telemetry/core/backends/chrome/cros_browser_with_oobe.py b/tools/telemetry/telemetry/core/backends/chrome/cros_browser_with_oobe.py
index 0899b7664df23446d14d79de378449dff1f466b5..afec18c80105b3d3b26f2948f00ece9ae7f81598 100644
--- a/tools/telemetry/telemetry/core/backends/chrome/cros_browser_with_oobe.py
+++ b/tools/telemetry/telemetry/core/backends/chrome/cros_browser_with_oobe.py
@@ -8,16 +8,10 @@ from telemetry.core.backends.chrome import cros_browser_backend
class CrOSBrowserWithOOBE(browser.Browser):
"""Cros-specific browser."""
- def __init__(self, backend, platform_backend, archive_path,
- append_to_existing_wpr, make_javascript_deterministic,
- credentials_path):
+ def __init__(self, backend, platform_backend, credentials_path):
assert isinstance(backend, cros_browser_backend.CrOSBrowserBackend)
- super(CrOSBrowserWithOOBE, self).__init__(backend,
- platform_backend,
- archive_path,
- append_to_existing_wpr,
- make_javascript_deterministic,
- credentials_path)
+ super(CrOSBrowserWithOOBE, self).__init__(
+ backend, platform_backend, credentials_path)
@property
def oobe(self):

Powered by Google App Engine
This is Rietveld 408576698