mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 14:15:30 +00:00
cfc16b4f63
Before we loaded the url into the open tab - this approach is more correct. I verified it fixed the issues on the Delta website mentioned in this bug. --HG-- extra : commitid : I3vxUCNtawp extra : rebase_source : f68bf82dea848b59d61fa8ce8ccd0045f1a35b2d
81 lines
2.8 KiB
JavaScript
81 lines
2.8 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
const Ci = Components.interfaces;
|
|
const Cu = Components.utils;
|
|
const Cc = Components.classes;
|
|
const Cr = Components.results;
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
Cu.import("resource://gre/modules/Messaging.jsm");
|
|
|
|
function ContentDispatchChooser() {}
|
|
|
|
ContentDispatchChooser.prototype =
|
|
{
|
|
classID: Components.ID("5a072a22-1e66-4100-afc1-07aed8b62fc5"),
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsIContentDispatchChooser]),
|
|
|
|
get protoSvc() {
|
|
if (!this._protoSvc) {
|
|
this._protoSvc = Cc["@mozilla.org/uriloader/external-protocol-service;1"].getService(Ci.nsIExternalProtocolService);
|
|
}
|
|
return this._protoSvc;
|
|
},
|
|
|
|
_getChromeWin: function getChromeWin() {
|
|
try {
|
|
return Services.wm.getMostRecentWindow("navigator:browser");
|
|
} catch (e) {
|
|
throw Cr.NS_ERROR_FAILURE;
|
|
}
|
|
},
|
|
|
|
ask: function ask(aHandler, aWindowContext, aURI, aReason) {
|
|
let window = null;
|
|
try {
|
|
if (aWindowContext)
|
|
window = aWindowContext.getInterface(Ci.nsIDOMWindow);
|
|
} catch (e) { /* it's OK to not have a window */ }
|
|
|
|
// The current list is based purely on the scheme. Redo the query using the url to get more
|
|
// specific results.
|
|
aHandler = this.protoSvc.getProtocolHandlerInfoFromOS(aURI.spec, {});
|
|
|
|
// The first handler in the set is the Android Application Chooser (which will fall back to a default if one is set)
|
|
// If we have more than one option, let the OS handle showing a list (if needed).
|
|
if (aHandler.possibleApplicationHandlers.length > 1) {
|
|
aHandler.launchWithURI(aURI, aWindowContext);
|
|
} else {
|
|
// xpcshell tests do not have an Android Bridge but we require Android
|
|
// Bridge when using Messaging so we guard against this case. xpcshell
|
|
// tests also do not have a window, so we use this state to guard.
|
|
let win = this._getChromeWin();
|
|
if (!win) {
|
|
return;
|
|
}
|
|
|
|
let msg = {
|
|
type: "Intent:OpenNoHandler",
|
|
uri: aURI.spec,
|
|
};
|
|
|
|
Messaging.sendRequestForResult(msg).then(() => {
|
|
// Java opens an app on success: take no action.
|
|
}, (uri) => {
|
|
// Java didn't load a page so load the page that Java wants us to load.
|
|
//
|
|
// Note: when we load the page here (rather than into the selected tab in
|
|
// java), we load it in the same context where the uri was specified (e.g.
|
|
// if it's in an iframe, we load the page in an iframe).
|
|
window.location.href = uri;
|
|
});
|
|
}
|
|
},
|
|
};
|
|
|
|
this.NSGetFactory = XPCOMUtils.generateNSGetFactory([ContentDispatchChooser]);
|