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

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

Issue 565803002: Removing browser.Start() and instead starts the browser at the point of creation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: resolve merge conflict Created 6 years, 3 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 a3d63bcae83c593736812ca4e32801d9912a895c..0899b7664df23446d14d79de378449dff1f466b5 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,9 +8,16 @@ from telemetry.core.backends.chrome import cros_browser_backend
class CrOSBrowserWithOOBE(browser.Browser):
"""Cros-specific browser."""
- def __init__(self, backend, platform_backend):
+ def __init__(self, backend, platform_backend, archive_path,
+ append_to_existing_wpr, make_javascript_deterministic,
+ credentials_path):
assert isinstance(backend, cros_browser_backend.CrOSBrowserBackend)
- super(CrOSBrowserWithOOBE, self).__init__(backend, platform_backend)
+ super(CrOSBrowserWithOOBE, self).__init__(backend,
+ platform_backend,
+ archive_path,
+ append_to_existing_wpr,
+ make_javascript_deterministic,
+ credentials_path)
@property
def oobe(self):

Powered by Google App Engine
This is Rietveld 408576698