diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-11-04 15:04:12 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-11-04 15:04:12 +0100 |
commit | 4c69d185a89d7ab9ab11a085278fffe275347c30 (patch) | |
tree | 464aab7a7ab88579810cb29ea3e76f9920480b24 /security/manager/pki | |
parent | 60a2a73e390de9f555b3bdad05efa39fb0748bd7 (diff) | |
download | aura-central-4c69d185a89d7ab9ab11a085278fffe275347c30.tar.gz |
Issue mcp-graveyard/UXP%1064 - Part 2: Fix shorthand and services module import.
Diffstat (limited to 'security/manager/pki')
-rw-r--r-- | security/manager/pki/resources/content/exceptionDialog.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/security/manager/pki/resources/content/exceptionDialog.js b/security/manager/pki/resources/content/exceptionDialog.js index 9d70ebdce..d227c3117 100644 --- a/security/manager/pki/resources/content/exceptionDialog.js +++ b/security/manager/pki/resources/content/exceptionDialog.js @@ -13,7 +13,10 @@ var gChecking; var gBroken; var gNeedReset; -Components.utils.import("resource://gre/modules/PrivateBrowsingUtils.jsm"); +const {interfaces: Ci, classes: Cc, results: Cr, utils: Cu} = Components; + +Cu.import("resource://gre/modules/PrivateBrowsingUtils.jsm"); +Cu.import("resource://gre/modules/Services.jsm"); function initExceptionDialog() { @@ -286,8 +289,8 @@ function addException() { return; } - var overrideService = Components.classes["@mozilla.org/security/certoverride;1"] - .getService(Components.interfaces.nsICertOverrideService); + var overrideService = Cc["@mozilla.org/security/certoverride;1"] + .getService(Ci.nsICertOverrideService); var flags = 0; if (gSSLStatus.isUntrusted) { flags |= overrideService.ERROR_UNTRUSTED; |