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

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

Issue 12079070: Rename tab_backend to inspector_backend. (Closed) Base URL: svn://chrome-svn/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 | « tools/telemetry/telemetry/tab_backend.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/tab_list_backend.py
===================================================================
--- tools/telemetry/telemetry/tab_list_backend.py (revision 179778)
+++ tools/telemetry/telemetry/tab_list_backend.py (working copy)
@@ -9,7 +9,7 @@
from telemetry import browser_gone_exception
from telemetry import tab
-from telemetry import tab_backend
+from telemetry import inspector_backend
from telemetry import util
class BrowserConnectionGoneException(
@@ -102,9 +102,10 @@
# Lazily get/create a Tab object.
tab_object = self._tab_dict.get(debugger_url)
if not tab_object:
- backend = tab_backend.TabBackend(self._browser_backend.browser,
- self._browser_backend,
- debugger_url)
+ backend = inspector_backend.InspectorBackend(
+ self._browser_backend.browser,
+ self._browser_backend,
+ debugger_url)
tab_object = tab.Tab(backend)
self._tab_dict[debugger_url] = tab_object
return tab_object
« no previous file with comments | « tools/telemetry/telemetry/tab_backend.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698