| 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
|
|
|