diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-05-09 13:26:23 -0400 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-05-09 19:45:32 +0200 |
commit | 440b167d621beca26ce09de8afac82e3a0fb2393 (patch) | |
tree | d030e7e8a07a3c2163c8042b03d411adc6173911 /application/palemoon | |
parent | bf0b2ab2ed3a117cd2c561a47ca939d82e11fddd (diff) | |
download | UXP-440b167d621beca26ce09de8afac82e3a0fb2393.tar UXP-440b167d621beca26ce09de8afac82e3a0fb2393.tar.gz UXP-440b167d621beca26ce09de8afac82e3a0fb2393.tar.lz UXP-440b167d621beca26ce09de8afac82e3a0fb2393.tar.xz UXP-440b167d621beca26ce09de8afac82e3a0fb2393.zip |
Issue #1082 - Restore a getBoolPref global shim in utilityOverlay.js
for Extension compatibility (uplift)
Diffstat (limited to 'application/palemoon')
-rw-r--r-- | application/palemoon/base/content/utilityOverlay.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/application/palemoon/base/content/utilityOverlay.js b/application/palemoon/base/content/utilityOverlay.js index c2a8baeed..6ba634a58 100644 --- a/application/palemoon/base/content/utilityOverlay.js +++ b/application/palemoon/base/content/utilityOverlay.js @@ -12,6 +12,9 @@ Components.utils.import("resource:///modules/RecentWindow.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "ShellService", "resource:///modules/ShellService.jsm"); +XPCOMUtils.defineLazyModuleGetter(this, "Deprecated", + "resource://gre/modules/Deprecated.jsm"); + XPCOMUtils.defineLazyGetter(this, "BROWSER_NEW_TAB_URL", function () { const PREF = "browser.newtab.url"; @@ -57,6 +60,14 @@ function getBrowserURL() return "chrome://browser/content/browser.xul"; } +function getBoolPref(pref, defaultValue) { + Deprecated.warning("getBoolPref is deprecated and will be removed in a future release. " + + "You should use Services.pref.getBoolPref (Services.jsm).", + "https://github.com/MoonchildProductions/UXP/issues/989"); + return Services.prefs.getBoolPref(pref, defaultValue); +} + + function getTopWin(skipPopups) { // If this is called in a browser window, use that window regardless of // whether it's the frontmost window, since commands can be executed in |