summaryrefslogtreecommitdiffstats
path: root/netwerk/protocol
diff options
context:
space:
mode:
authorJustOff <Off.Just.Off@gmail.com>2020-03-11 01:07:33 +0200
committerJustOff <Off.Just.Off@gmail.com>2020-03-11 01:07:33 +0200
commitad7526fe70d2111c2d0cd2552b49922c09cf84c2 (patch)
treef19bb2ef97b2f5eebdcfca31cddac5c2a315c1be /netwerk/protocol
parentccee9ea5b7167675290c022e75b1744d41c005d2 (diff)
downloadUXP-ad7526fe70d2111c2d0cd2552b49922c09cf84c2.tar
UXP-ad7526fe70d2111c2d0cd2552b49922c09cf84c2.tar.gz
UXP-ad7526fe70d2111c2d0cd2552b49922c09cf84c2.tar.lz
UXP-ad7526fe70d2111c2d0cd2552b49922c09cf84c2.tar.xz
UXP-ad7526fe70d2111c2d0cd2552b49922c09cf84c2.zip
Issue #1053 - Remove no longer used function and modules from `UserAgentUpdates.jsm`
Diffstat (limited to 'netwerk/protocol')
-rw-r--r--netwerk/protocol/http/UserAgentUpdates.jsm30
1 files changed, 0 insertions, 30 deletions
diff --git a/netwerk/protocol/http/UserAgentUpdates.jsm b/netwerk/protocol/http/UserAgentUpdates.jsm
index 4b3ae574a..cd21b78b3 100644
--- a/netwerk/protocol/http/UserAgentUpdates.jsm
+++ b/netwerk/protocol/http/UserAgentUpdates.jsm
@@ -17,15 +17,9 @@ XPCOMUtils.defineLazyModuleGetter(
this, "FileUtils", "resource://gre/modules/FileUtils.jsm");
XPCOMUtils.defineLazyModuleGetter(
- this, "NetUtil", "resource://gre/modules/NetUtil.jsm");
-
-XPCOMUtils.defineLazyModuleGetter(
this, "OS", "resource://gre/modules/osfile.jsm");
XPCOMUtils.defineLazyModuleGetter(
- this, "Promise", "resource://gre/modules/Promise.jsm");
-
-XPCOMUtils.defineLazyModuleGetter(
this, "UpdateUtils", "resource://gre/modules/UpdateUtils.jsm");
XPCOMUtils.defineLazyServiceGetter(
@@ -64,30 +58,6 @@ const PREF_APP_DISTRIBUTION_VERSION = "distribution.version";
var gInitialized = false;
-function readChannel(url) {
- return new Promise((resolve, reject) => {
- try {
- let channel = NetUtil.newChannel({uri: url, loadUsingSystemPrincipal: true});
- channel.contentType = "application/json";
-
- NetUtil.asyncFetch(channel, (inputStream, status) => {
- if (!Components.isSuccessCode(status)) {
- reject();
- return;
- }
-
- let data = JSON.parse(
- NetUtil.readInputStreamToString(inputStream, inputStream.available())
- );
- resolve(data);
- });
- } catch (ex) {
- reject(new Error("UserAgentUpdates: Could not fetch " + url + " " +
- ex + "\n" + ex.stack));
- }
- });
-}
-
this.UserAgentUpdates = {
init: function(callback) {
if (gInitialized) {