gecko/chrome/test/unit/head_crtestutils.js

15 lines
426 B
JavaScript
Raw Normal View History

const XULAPPINFO_CONTRACTID = "@mozilla.org/xre/app-info;1";
2010-06-25 17:53:20 -07:00
const XULAPPINFO_CID = Components.ID("{4ba645d3-be6f-40d6-a42a-01b2f40091b8}");
const Cc = Components.classes;
const Ci = Components.interfaces;
const Cr = Components.results;
function registerManifests(manifests)
{
2010-06-25 17:53:20 -07:00
var reg = Components.manager.QueryInterface(Ci.nsIComponentRegistrar);
for each (var manifest in manifests)
reg.autoRegister(manifest);
}