mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 13:18:45 +02:00
Add an about:compat page to the Webcompat GoFaster addon. Differential Revision: https://phabricator.services.mozilla.com/D18303 --HG-- extra : moz-landing-system : lando
22 lines
832 B
JavaScript
22 lines
832 B
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/. */
|
|
|
|
"use strict";
|
|
|
|
const Cm = Components.manager.QueryInterface(Ci.nsIComponentRegistrar);
|
|
|
|
const classID = Components.ID("{97bf9550-2a7b-11e9-b56e-0800200c9a66}");
|
|
|
|
if (!Cm.isCIDRegistered(classID)) {
|
|
const {XPCOMUtils} = ChromeUtils.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
const factory = XPCOMUtils.generateSingletonFactory(function() {
|
|
const {AboutCompat} = ChromeUtils.import("resource://webcompat/AboutCompat.jsm");
|
|
return new AboutCompat();
|
|
});
|
|
|
|
Cm.registerFactory(classID, "about:compat",
|
|
"@mozilla.org/network/protocol/about;1?what=compat",
|
|
factory);
|
|
}
|