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

Unified Diff: tools/telemetry/telemetry/inspector_runtime.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/inspector_page.py ('k') | tools/telemetry/telemetry/inspector_timeline.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/inspector_runtime.py
===================================================================
--- tools/telemetry/telemetry/inspector_runtime.py (revision 179778)
+++ tools/telemetry/telemetry/inspector_runtime.py (working copy)
@@ -5,9 +5,9 @@
pass
class InspectorRuntime(object):
- def __init__(self, tab_backend):
- self._tab_backend = tab_backend
- self._tab_backend.RegisterDomain(
+ def __init__(self, inspector_backend):
+ self._inspector_backend = inspector_backend
+ self._inspector_backend.RegisterDomain(
'Runtime',
self._OnNotification,
self._OnClose)
@@ -44,7 +44,7 @@
'returnByValue': True
}
}
- res = self._tab_backend.SyncRequest(request, timeout)
+ res = self._inspector_backend.SyncRequest(request, timeout)
if 'error' in res:
raise EvaluateException(res['error']['message'])
« no previous file with comments | « tools/telemetry/telemetry/inspector_page.py ('k') | tools/telemetry/telemetry/inspector_timeline.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698