Bug 1943650 - Command-line --help output misformatted after --dbus-service. r=emilio
[gecko.git] / toolkit / components / mozprotocol / MozProtocolHandler.sys.mjs
blobfc00c1c09aa6c7f8810e94cf8647effe5a3ca56e
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 import { XPCOMUtils } from "resource://gre/modules/XPCOMUtils.sys.mjs";
7 import { NetUtil } from "resource://gre/modules/NetUtil.sys.mjs";
9 export function MozProtocolHandler() {
10   XPCOMUtils.defineLazyPreferenceGetter(
11     this,
12     "urlToLoad",
13     "toolkit.mozprotocol.url",
14     "https://www.mozilla.org/about/manifesto/"
15   );
18 MozProtocolHandler.prototype = {
19   scheme: "moz",
20   defaultPort: -1,
21   protocolFlags: Ci.nsIProtocolHandler.URI_DANGEROUS_TO_LOAD,
23   newChannel(uri, loadInfo) {
24     const kCanada = "https://www.mozilla.org/contact/communities/canada/";
25     let realURL = NetUtil.newURI(
26       uri && uri.spec == "moz://eh" ? kCanada : this.urlToLoad
27     );
28     let channel = Services.io.newChannelFromURIWithLoadInfo(realURL, loadInfo);
29     loadInfo.resultPrincipalURI = realURL;
30     return channel;
31   },
33   QueryInterface: ChromeUtils.generateQI(["nsIProtocolHandler"]),