gecko-dev/devtools/client/netmonitor/panel.js
Alexandre Poirot 4c1bb0403e Bug 1397020 - Remove useless calls to TabTarget.attach r=yulia
TabTarget.attach is being called from the toolbox, before opening the tools,
so we do not have to call it from panel's open functions, nor code that is opening
a toolbox right after.

MozReview-Commit-ID: 77TZFbvOaFt

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

--HG--
extra : moz-landing-system : lando
2018-09-26 21:11:51 +00:00

40 lines
1.0 KiB
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
function NetMonitorPanel(iframeWindow, toolbox) {
this.panelWin = iframeWindow;
this.toolbox = toolbox;
}
NetMonitorPanel.prototype = {
async open() {
// Reuse an existing Network monitor API object if available.
// It could have been created for WE API before Net panel opens.
const api = await this.toolbox.getNetMonitorAPI();
const app = this.panelWin.initialize(api);
// Connect the application object to the UI.
await app.bootstrap({
toolbox: this.toolbox,
document: this.panelWin.document,
});
// Ready to go!
this.emit("ready");
this.isReady = true;
return this;
},
async destroy() {
await this.panelWin.Netmonitor.destroy();
this.emit("destroyed");
return this;
},
};
exports.NetMonitorPanel = NetMonitorPanel;