Revision 71cb0a081bf5e98368406fe76dc8f74c9a5aac88 authored by B2G Bumper Bot on 26 May 2014, 09:13:00 UTC, committed by B2G Bumper Bot on 26 May 2014, 09:13:00 UTC
1 parent 095b31a
Raw File
head_crtestutils.js
const XULAPPINFO_CONTRACTID = "@mozilla.org/xre/app-info;1";
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)
{
  var reg = Components.manager.QueryInterface(Ci.nsIComponentRegistrar);
  for each (var manifest in manifests)
    reg.autoRegister(manifest);
}
back to top