summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/extensions/test/addons/test_bootstrap2_1/bootstrap.js
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/mozapps/extensions/test/addons/test_bootstrap2_1/bootstrap.js')
-rw-r--r--toolkit/mozapps/extensions/test/addons/test_bootstrap2_1/bootstrap.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/toolkit/mozapps/extensions/test/addons/test_bootstrap2_1/bootstrap.js b/toolkit/mozapps/extensions/test/addons/test_bootstrap2_1/bootstrap.js
deleted file mode 100644
index 476edfeee..000000000
--- a/toolkit/mozapps/extensions/test/addons/test_bootstrap2_1/bootstrap.js
+++ /dev/null
@@ -1,17 +0,0 @@
-Components.utils.import("resource://gre/modules/Services.jsm");
-
-function install(data, reason) {
- Services.prefs.setIntPref("bootstraptest2.installed_version", 1);
-}
-
-function startup(data, reason) {
- Services.prefs.setIntPref("bootstraptest2.active_version", 1);
-}
-
-function shutdown(data, reason) {
- Services.prefs.setIntPref("bootstraptest2.active_version", 0);
-}
-
-function uninstall(data, reason) {
- Services.prefs.setIntPref("bootstraptest2.installed_version", 0);
-}