| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 import os | 4 import os |
| 5 | 5 |
| 6 from telemetry import browser_backend | 6 from telemetry import browser_backend |
| 7 from telemetry import browser_credentials | 7 from telemetry import browser_credentials |
| 8 from telemetry import extension_dict | 8 from telemetry import extension_dict |
| 9 from telemetry import tab_list | 9 from telemetry import tab_list |
| 10 from telemetry import temporary_http_server | 10 from telemetry import temporary_http_server |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 archive_path, | 142 archive_path, |
| 143 use_record_mode, | 143 use_record_mode, |
| 144 self._browser_backend.WEBPAGEREPLAY_HOST, | 144 self._browser_backend.WEBPAGEREPLAY_HOST, |
| 145 self._browser_backend.webpagereplay_local_http_port, | 145 self._browser_backend.webpagereplay_local_http_port, |
| 146 self._browser_backend.webpagereplay_local_https_port, | 146 self._browser_backend.webpagereplay_local_https_port, |
| 147 self._browser_backend.webpagereplay_remote_http_port, | 147 self._browser_backend.webpagereplay_remote_http_port, |
| 148 self._browser_backend.webpagereplay_remote_https_port) | 148 self._browser_backend.webpagereplay_remote_https_port) |
| 149 | 149 |
| 150 def GetStandardOutput(self): | 150 def GetStandardOutput(self): |
| 151 return self._browser_backend.GetStandardOutput() | 151 return self._browser_backend.GetStandardOutput() |
| OLD | NEW |