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 | 5f37447acdfa719cb7fa1f5c5161df52f3bf98c4 (patch) | |
tree | 464aab7a7ab88579810cb29ea3e76f9920480b24 /security | |
parent | c5c44d12073791bb1150445ce48bc57fccbb544d (diff) | |
download | uxp-5f37447acdfa719cb7fa1f5c5161df52f3bf98c4.tar.gz |
Issue #1064 - Part 2: Fix shorthand and services module import.
Diffstat (limited to 'security')
-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 9d70ebdced..d227c3117e 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; |