Bug 1628691 - Remove leftover usage of this._target in inspector.js r=ochameau

Differential Revision: https://phabricator.services.mozilla.com/D62616

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Julian Descottes 2020-04-09 13:07:29 +00:00
parent 8592f79d9a
commit 85347793aa

View File

@ -147,7 +147,6 @@ function Inspector(toolbox) {
EventEmitter.decorate(this);
this._toolbox = toolbox;
this._target = toolbox.target;
this.panelDoc = window.document;
this.panelWin = window;
this.panelWin.inspector = this;
@ -1648,8 +1647,8 @@ Inspector.prototype = {
}
this._destroyed = true;
this._target.threadFront.off("paused", this.handleThreadPaused);
this._target.threadFront.off("resumed", this.handleThreadResumed);
this.currentTarget.threadFront.off("paused", this.handleThreadPaused);
this.currentTarget.threadFront.off("resumed", this.handleThreadResumed);
if (this.walker) {
this.walker.off("new-root", this.onNewRoot);
@ -1713,7 +1712,6 @@ Inspector.prototype = {
this._is3PaneModeEnabled = null;
this._markupBox = null;
this._markupFrame = null;
this._target = null;
this._toolbox = null;
this.breadcrumbs = null;
this.panelDoc = null;