summaryrefslogtreecommitdiffstats
path: root/application/palemoon/base/content/autorecovery.js
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2018-04-12 06:16:44 -0400
committerMatt A. Tobin <email@mattatobin.com>2018-04-12 06:16:44 -0400
commit536bc9be40ca700fef0a70e4e8929342db1d86c6 (patch)
tree9321b04370b904a3d54ce0be359b18b259a4440c /application/palemoon/base/content/autorecovery.js
parent85e1c970e9e0dfa8b01d2209bf9dc6b3e5510556 (diff)
downloadUXP-536bc9be40ca700fef0a70e4e8929342db1d86c6.tar
UXP-536bc9be40ca700fef0a70e4e8929342db1d86c6.tar.gz
UXP-536bc9be40ca700fef0a70e4e8929342db1d86c6.tar.lz
UXP-536bc9be40ca700fef0a70e4e8929342db1d86c6.tar.xz
UXP-536bc9be40ca700fef0a70e4e8929342db1d86c6.zip
Revert "[PALEMOON] Fix redeclarations of shorthand Cc, Ci, Cu"
This reverts commit 6fde853fa8276926f30c7135bdd5f68de3afc35a.
Diffstat (limited to 'application/palemoon/base/content/autorecovery.js')
-rw-r--r--application/palemoon/base/content/autorecovery.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/application/palemoon/base/content/autorecovery.js b/application/palemoon/base/content/autorecovery.js
index c24d1bfe4..29ccaed3f 100644
--- a/application/palemoon/base/content/autorecovery.js
+++ b/application/palemoon/base/content/autorecovery.js
@@ -10,6 +10,10 @@
* have been properly initialized already.
*/
+let Cc = Components.classes;
+let Ci = Components.interfaces;
+let Cu = Components.utils;
+
// Services = object with smart getters for common XPCOM services
Cu.import("resource://gre/modules/Services.jsm");