summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/addon-source/browser_dbg_addon5/bootstrap.js
blob: 8edc53756c414e893aa210a4a0320277d09467b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

var { interfaces: Ci, classes: Cc } = Components;

function startup(aParams, aReason) {
  Components.utils.import("resource://gre/modules/Services.jsm");
  let res = Services.io.getProtocolHandler("resource")
                       .QueryInterface(Ci.nsIResProtocolHandler);
  res.setSubstitution("browser_dbg_addon5", aParams.resourceURI);

  // Load a JS module
  Components.utils.import("resource://browser_dbg_addon5/test.jsm");
}

function shutdown(aParams, aReason) {
  // Unload the JS module
  Components.utils.unload("resource://browser_dbg_addon5/test.jsm");

  let res = Services.io.getProtocolHandler("resource")
                       .QueryInterface(Ci.nsIResProtocolHandler);
  res.setSubstitution("browser_dbg_addon5", null);
}