summaryrefslogtreecommitdiffstats
path: root/chrome/test/unit/head_crtestutils.js
blob: d20486c385bad5bb3f73b8efed59b2b382edce3a (plain)
1
2
3
4
5
6
7
8
9
const XULAPPINFO_CONTRACTID = "@mozilla.org/xre/app-info;1";
const XULAPPINFO_CID = Components.ID("{4ba645d3-be6f-40d6-a42a-01b2f40091b8}");

function registerManifests(manifests) {
  var reg = Components.manager.QueryInterface(Ci.nsIComponentRegistrar);
  for (var manifest of manifests) {
    reg.autoRegister(manifest);
  }
}