Bug 1573780 - add targetFront to deprecated debugger client; r=jlast

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
yulia 2019-08-19 15:10:36 +00:00
Родитель 4707300839
Коммит 723a427a35
2 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -37,6 +37,7 @@ function ThreadClient(client, actor) {
this._actor = actor;
this._pauseGrips = {};
this._threadGrips = {};
this.targetFront = null;
this.request = this.client.request;
}
@ -235,6 +236,7 @@ ThreadClient.prototype = {
}),
destroy: function() {
this.targetFront = null;
return this.detach();
},

Просмотреть файл

@ -417,6 +417,7 @@ function TargetMixin(parentClass) {
this.threadFront = new ThreadClient(this._client, this._threadActor);
this.fronts.set("thread", this.threadFront);
this.threadFront.actorID = this._threadActor;
this.threadFront.targetFront = this;
this.manage(this.threadFront);
}
const result = await this.threadFront.attach(options);