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

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

Issue 12253002: Fix dtor of web_contents. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: comments Created 7 years, 10 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/web_contents.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/tab.py
===================================================================
--- tools/telemetry/telemetry/tab.py (revision 182002)
+++ tools/telemetry/telemetry/tab.py (working copy)
@@ -20,11 +20,8 @@
super(Tab, self).__init__(inspector_backend)
def __del__(self):
- self.Disconnect()
+ super(Tab, self).__del__()
- def Disconnect(self):
- self._inspector_backend.Disconnect()
-
@property
def browser(self):
"""The browser in which this tab resides."""
« no previous file with comments | « no previous file | tools/telemetry/telemetry/web_contents.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698