mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 23:08:39 +09:00
Use asyncOpen2 instead of asyncOpen everywhere in Pale Moon
This commit is contained in:
parent
51bef58e0b
commit
3df5e55320
3 changed files with 19 additions and 26 deletions
|
|
@ -260,7 +260,7 @@ FeedConverter.prototype = {
|
|||
}
|
||||
|
||||
chromeChannel.loadGroup = this._request.loadGroup;
|
||||
chromeChannel.asyncOpen(this._listener, null);
|
||||
chromeChannel.asyncOpen2(this._listener);
|
||||
}
|
||||
finally {
|
||||
this._releaseHandles();
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ const Cr = Components.results;
|
|||
const Cu = Components.utils;
|
||||
|
||||
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
||||
Cu.import("resource://gre/modules/NetUtil.jsm");
|
||||
|
||||
const FEEDWRITER_CID = Components.ID("{49bb6593-3aff-4eb3-a068-2712c28bd58e}");
|
||||
const FEEDWRITER_CONTRACTID = "@mozilla.org/browser/feeds/result-writer;1";
|
||||
|
|
@ -1137,16 +1138,14 @@ FeedWriter.prototype = {
|
|||
var nullPrincipal = Cc["@mozilla.org/nullprincipal;1"].
|
||||
createInstance(Ci.nsIPrincipal);
|
||||
|
||||
var resolvedURI = Cc["@mozilla.org/network/io-service;1"].
|
||||
getService(Ci.nsIIOService).
|
||||
newChannel2("about:feeds",
|
||||
null,
|
||||
null,
|
||||
null, // aLoadingNode
|
||||
nullPrincipal,
|
||||
null, // aTriggeringPrincipal
|
||||
Ci.nsILoadInfo.SEC_NORMAL,
|
||||
Ci.nsIContentPolicy.TYPE_OTHER).URI;
|
||||
// this channel is not going to be openend, use a nullPrincipal
|
||||
// and the most restrctive securityFlag.
|
||||
let resolvedURI = NetUtil.newChannel({
|
||||
uri: "about:feeds",
|
||||
loadingPrincipal: nullPrincipal,
|
||||
securityFlags: Ci.nsILoadInfo.SEC_REQUIRE_SAME_ORIGIN_DATA_IS_BLOCKED,
|
||||
contentPolicyType: Ci.nsIContentPolicy.TYPE_OTHER
|
||||
}).URI;
|
||||
|
||||
if (resolvedURI.equals(chan.URI))
|
||||
return chan.originalURI;
|
||||
|
|
|
|||
|
|
@ -1931,12 +1931,10 @@ this.XPIProvider = {
|
|||
|
||||
let chan;
|
||||
try {
|
||||
chan = Services.io.newChannelFromURI2(aURI,
|
||||
null, // aLoadingNode
|
||||
Services.scriptSecurityManager.getSystemPrincipal(),
|
||||
null, // aTriggeringPrincipal
|
||||
Ci.nsILoadInfo.SEC_NORMAL,
|
||||
Ci.nsIContentPolicy.TYPE_OTHER);
|
||||
chan = NetUtil.newChannel({
|
||||
uri: aURI,
|
||||
loadUsingSystemPrincipal: true
|
||||
});
|
||||
}
|
||||
catch (ex) {
|
||||
return null;
|
||||
|
|
@ -5456,21 +5454,17 @@ AddonInstall.prototype = {
|
|||
let requireBuiltIn = Preferences.get(PREF_INSTALL_REQUIREBUILTINCERTS, true);
|
||||
this.badCertHandler = new BadCertHandler(!requireBuiltIn);
|
||||
|
||||
this.channel = NetUtil.newChannel2(this.sourceURI,
|
||||
null,
|
||||
null,
|
||||
null, // aLoadingNode
|
||||
Services.scriptSecurityManager.getSystemPrincipal(),
|
||||
null, // aTriggeringPrincipal
|
||||
Ci.nsILoadInfo.SEC_NORMAL,
|
||||
Ci.nsIContentPolicy.TYPE_OTHER);
|
||||
this.channel = NetUtil.newChannel({
|
||||
uri: this.sourceURI,
|
||||
loadUsingSystemPrincipal: true
|
||||
});
|
||||
this.channel.notificationCallbacks = this;
|
||||
if (this.channel instanceof Ci.nsIHttpChannel) {
|
||||
this.channel.setRequestHeader("Moz-XPI-Update", "1", true);
|
||||
if (this.channel instanceof Ci.nsIHttpChannelInternal)
|
||||
this.channel.forceAllowThirdPartyCookie = true;
|
||||
}
|
||||
this.channel.asyncOpen(listener, null);
|
||||
this.channel.asyncOpen2(listener);
|
||||
|
||||
Services.obs.addObserver(this, "network:offline-about-to-go-offline", false);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue