michael@0: Components.utils.import("resource://gre/modules/Services.jsm"); michael@0: michael@0: const VERSION = "1.0"; michael@0: michael@0: function install(data, reason) { michael@0: Services.prefs.setIntPref("bootstraptest.installed_version", VERSION); michael@0: Services.prefs.setIntPref("bootstraptest.install_reason", reason); michael@0: } michael@0: michael@0: function startup(data, reason) { michael@0: Services.prefs.setIntPref("bootstraptest.active_version", VERSION); michael@0: Services.prefs.setIntPref("bootstraptest.startup_reason", reason); michael@0: } michael@0: michael@0: function shutdown(data, reason) { michael@0: Services.prefs.setIntPref("bootstraptest.active_version", 0); michael@0: Services.prefs.setIntPref("bootstraptest.shutdown_reason", reason); michael@0: } michael@0: michael@0: function uninstall(data, reason) { michael@0: Services.prefs.setIntPref("bootstraptest.installed_version", 0); michael@0: Services.prefs.setIntPref("bootstraptest.uninstall_reason", reason); michael@0: }