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

Unified Diff: tools/telemetry/telemetry/core/possible_browser.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/possible_browser.py
diff --git a/tools/telemetry/telemetry/core/possible_browser.py b/tools/telemetry/telemetry/core/possible_browser.py
index 9d70760089175e485ea0c3fd18b53030b88f32a9..36607c021d746d7b85dfeb1f29529d17628930d6 100644
--- a/tools/telemetry/telemetry/core/possible_browser.py
+++ b/tools/telemetry/telemetry/core/possible_browser.py
@@ -17,9 +17,6 @@ class PossibleBrowser(possible_app.PossibleApp):
target_os=target_os,
finder_options=finder_options)
self._supports_tab_control = supports_tab_control
- self._archive_path = None
- self._append_to_existing_wpr = False
- self._make_javascript_deterministic = True
self._credentials_path = None
def __repr__(self):
@@ -55,11 +52,5 @@ class PossibleBrowser(possible_app.PossibleApp):
def last_modification_time(self):
return -1
- def SetReplayArchivePath(self, archive_path, append_to_existing_wpr,
- make_javascript_deterministic):
- self._archive_path = archive_path
- self._append_to_existing_wpr = append_to_existing_wpr
- self._make_javascript_deterministic = make_javascript_deterministic
-
def SetCredentialsPath(self, credentials_path):
self._credentials_path = credentials_path
« no previous file with comments | « tools/telemetry/telemetry/core/platform/platform_backend.py ('k') | tools/telemetry/telemetry/core/webpagereplay.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698