michael@0: Components.utils.import("resource://gre/modules/Services.jsm"); michael@0: michael@0: function install(data, reason) { michael@0: Services.prefs.setIntPref("bootstraptest2.installed_version", 1); michael@0: } michael@0: michael@0: function startup(data, reason) { michael@0: Services.prefs.setIntPref("bootstraptest2.active_version", 1); michael@0: } michael@0: michael@0: function shutdown(data, reason) { michael@0: Services.prefs.setIntPref("bootstraptest2.active_version", 0); michael@0: } michael@0: michael@0: function uninstall(data, reason) { michael@0: Services.prefs.setIntPref("bootstraptest2.installed_version", 0); michael@0: }