Bug 1161072 - Destroy highlighter actor on disconnect. r=pbrosset

This commit is contained in:
Alexandre Poirot 2015-05-19 09:09:38 +02:00
Родитель c58ddfca92
Коммит b10cae099e
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -3504,7 +3504,9 @@ var InspectorActor = exports.InspectorActor = protocol.ActorClass({
}
this._highlighterPromise = this.getWalker().then(walker => {
return HighlighterActor(this, autohide);
let highlighter = HighlighterActor(this, autohide);
this.manage(highlighter);
return highlighter;
});
return this._highlighterPromise;
}, {