summaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2019-11-04 15:04:12 +0100
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-11-04 15:04:12 +0100
commit5f37447acdfa719cb7fa1f5c5161df52f3bf98c4 (patch)
tree464aab7a7ab88579810cb29ea3e76f9920480b24 /security
parentc5c44d12073791bb1150445ce48bc57fccbb544d (diff)
downloadUXP-5f37447acdfa719cb7fa1f5c5161df52f3bf98c4.tar
UXP-5f37447acdfa719cb7fa1f5c5161df52f3bf98c4.tar.gz
UXP-5f37447acdfa719cb7fa1f5c5161df52f3bf98c4.tar.lz
UXP-5f37447acdfa719cb7fa1f5c5161df52f3bf98c4.tar.xz
UXP-5f37447acdfa719cb7fa1f5c5161df52f3bf98c4.zip
Issue #1064 - Part 2: Fix shorthand and services module import.
Diffstat (limited to 'security')
-rw-r--r--security/manager/pki/resources/content/exceptionDialog.js9
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;