gecko-dev/testing/specialpowers/bootstrap.js
Andrew Halberstadt 1252d85394 Bug 1219442 - Re-write specialpowers as a restartless addon, r=jmaher
In order to meet the addon signing requirement for tests, specialpowers
needs to be installed at gecko runtime. This means it must be restartless.
This patch packages specialpowers as a restartless addon, but it does not
yet install it at runtime.

--HG--
rename : testing/specialpowers/components/SpecialPowersObserver.js => testing/specialpowers/content/SpecialPowersObserver.jsm
extra : commitid : Bbg8gFten8S
extra : rebase_source : 99d0b841a1f8f9eb6b6ca846363a158836482e57
2015-11-05 10:00:59 -05:00

40 lines
1.3 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/. */
Components.utils.import("resource://gre/modules/Services.jsm");
var spObserver;
function startup(data, reason) {
let observer = {};
Components.utils.import("chrome://specialpowers/content/SpecialPowersObserver.jsm", observer);
let registrar = Components.manager.QueryInterface(Components.interfaces.nsIComponentRegistrar);
registrar.registerFactory(
observer.SpecialPowersObserver.prototype.classID,
"SpecialPowersObserver",
observer.SpecialPowersObserver.prototype.contractID,
observer.SpecialPowersObserverFactory
);
spObserver = new observer.SpecialPowersObserver();
spObserver.init();
}
function shutdown(data, reason) {
let observer = {};
Components.utils.import("chrome://specialpowers/content/SpecialPowersObserver.jsm", observer);
let registrar = Components.manager.QueryInterface(Components.interfaces.nsIComponentRegistrar);
registrar.unregisterFactory(
observer.SpecialPowersObserver.prototype.classID,
observer.SpecialPowersObserverFactory
);
spObserver.uninit();
}
function install(data, reason) {}
function uninstall(data, reason) {}