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

Unified Diff: tools/telemetry/telemetry/browser_backend.py

Issue 11931026: Revert 177087. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 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
« no previous file with comments | « no previous file | tools/telemetry/telemetry/inspector_console.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/browser_backend.py
===================================================================
--- tools/telemetry/telemetry/browser_backend.py (revision 177224)
+++ tools/telemetry/telemetry/browser_backend.py (working copy)
@@ -13,7 +13,6 @@
from telemetry import browser_gone_exception
from telemetry import options_for_unittests
from telemetry import tab
-from telemetry import tab_backend
from telemetry import tracing_backend
from telemetry import user_agent
from telemetry import util
@@ -97,9 +96,7 @@
# Lazily get/create a Tab object.
tab_object = self._tab_dict.get(debugger_url)
if not tab_object:
- backend = tab_backend.TabBackend(
- self._browser, self._browser_backend, debugger_url)
- tab_object = tab.Tab(backend)
+ tab_object = tab.Tab(self._browser, self._browser_backend, debugger_url)
self._tab_dict[debugger_url] = tab_object
return tab_object
« no previous file with comments | « no previous file | tools/telemetry/telemetry/inspector_console.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698