summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/extensions/test/addons/test_bug655254_2/bootstrap.js
blob: b79648e893d537cbb444ae62f8e438d0d1136662 (plain)
1
2
3
4
5
6
7
8
9
Components.utils.import("resource://gre/modules/Services.jsm");

function startup(data, reason) {
  Services.prefs.setIntPref("bootstraptest.active_version", 1);
}

function shutdown(data, reason) {
  Services.prefs.setIntPref("bootstraptest.active_version", 0);
}