Backed out changeset 4e5771f93acb (bug 1788769) for causing bc failures on browser_all_files_referenced.js CLOSED TREE

This commit is contained in:
Norisz Fay 2022-09-10 22:19:01 +03:00
Родитель ed9563086d
Коммит 3e9cb459c7
3 изменённых файлов: 8 добавлений и 4 удалений

Просмотреть файл

@ -3,8 +3,10 @@
* 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/. */
var EXPORTED_SYMBOLS = ["AboutPluginsChild"];
const { RemotePageChild } = ChromeUtils.import(
"resource://gre/actors/RemotePageChild.jsm"
);
export class AboutPluginsChild extends RemotePageChild {}
class AboutPluginsChild extends RemotePageChild {}

Просмотреть файл

@ -4,6 +4,8 @@
"use strict";
var EXPORTED_SYMBOLS = ["AboutPluginsParent"];
const lazy = {};
ChromeUtils.defineModuleGetter(
@ -23,7 +25,7 @@ const NEEDED_PROPS = [
"description",
];
export class AboutPluginsParent extends JSWindowActorParent {
class AboutPluginsParent extends JSWindowActorParent {
async receiveMessage(message) {
switch (message.name) {
case "RequestPlugins":

Просмотреть файл

@ -34,8 +34,8 @@ with Files("WebRTCChild.jsm"):
FINAL_TARGET_FILES.actors += [
"AboutNewTabChild.jsm",
"AboutNewTabParent.jsm",
"AboutPluginsChild.sys.mjs",
"AboutPluginsParent.sys.mjs",
"AboutPluginsChild.jsm",
"AboutPluginsParent.jsm",
"AboutPocketChild.jsm",
"AboutPocketParent.jsm",
"AboutPrivateBrowsingChild.jsm",