147 lines
2.9 KiB
JavaScript
147 lines
2.9 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/. */
|
|
"use strict";
|
|
|
|
const {
|
|
types,
|
|
generateActorSpec,
|
|
RetVal,
|
|
Arg,
|
|
Option,
|
|
} = require("resource://devtools/shared/protocol.js");
|
|
|
|
types.addDictType("root.listWorkers", {
|
|
workers: "array:workerDescriptor",
|
|
});
|
|
types.addDictType("root.listServiceWorkerRegistrations", {
|
|
registrations: "array:serviceWorkerRegistration",
|
|
});
|
|
|
|
const rootSpecPrototype = {
|
|
typeName: "root",
|
|
|
|
methods: {
|
|
connect: {
|
|
request: {
|
|
// Added in Fx 133
|
|
frontendVersion: Option(0, "string"),
|
|
},
|
|
response: {},
|
|
},
|
|
|
|
getRoot: {
|
|
request: {},
|
|
response: RetVal("json"),
|
|
},
|
|
|
|
listTabs: {
|
|
request: {},
|
|
response: {
|
|
tabs: RetVal("array:tabDescriptor"),
|
|
},
|
|
},
|
|
|
|
getTab: {
|
|
request: {
|
|
browserId: Option(0, "number"),
|
|
},
|
|
response: {
|
|
tab: RetVal("tabDescriptor"),
|
|
},
|
|
},
|
|
|
|
listAddons: {
|
|
request: {
|
|
iconDataURL: Option(0, "boolean"),
|
|
},
|
|
response: {
|
|
addons: RetVal("array:webExtensionDescriptor"),
|
|
},
|
|
},
|
|
|
|
listWorkers: {
|
|
request: {},
|
|
response: RetVal("root.listWorkers"),
|
|
},
|
|
|
|
listServiceWorkerRegistrations: {
|
|
request: {},
|
|
response: RetVal("root.listServiceWorkerRegistrations"),
|
|
},
|
|
|
|
listProcesses: {
|
|
request: {},
|
|
response: {
|
|
processes: RetVal("array:processDescriptor"),
|
|
},
|
|
},
|
|
|
|
getProcess: {
|
|
request: {
|
|
id: Arg(0, "number"),
|
|
},
|
|
response: {
|
|
processDescriptor: RetVal("processDescriptor"),
|
|
},
|
|
},
|
|
|
|
watchResources: {
|
|
request: {
|
|
resourceTypes: Arg(0, "array:string"),
|
|
},
|
|
response: {},
|
|
},
|
|
|
|
unwatchResources: {
|
|
request: {
|
|
resourceTypes: Arg(0, "array:string"),
|
|
},
|
|
oneway: true,
|
|
},
|
|
|
|
clearResources: {
|
|
request: {
|
|
resourceTypes: Arg(0, "array:string"),
|
|
},
|
|
oneway: true,
|
|
},
|
|
|
|
requestTypes: {
|
|
request: {},
|
|
response: RetVal("json"),
|
|
},
|
|
},
|
|
|
|
events: {
|
|
tabListChanged: {
|
|
type: "tabListChanged",
|
|
},
|
|
workerListChanged: {
|
|
type: "workerListChanged",
|
|
},
|
|
addonListChanged: {
|
|
type: "addonListChanged",
|
|
},
|
|
serviceWorkerRegistrationListChanged: {
|
|
type: "serviceWorkerRegistrationListChanged",
|
|
},
|
|
processListChanged: {
|
|
type: "processListChanged",
|
|
},
|
|
|
|
"resources-available-array": {
|
|
type: "resources-available-array",
|
|
array: Arg(0, "array:json"),
|
|
},
|
|
"resources-destroyed-array": {
|
|
type: "resources-destroyed-array",
|
|
array: Arg(0, "array:json"),
|
|
},
|
|
},
|
|
};
|
|
|
|
const rootSpec = generateActorSpec(rootSpecPrototype);
|
|
|
|
exports.rootSpecPrototype = rootSpecPrototype;
|
|
exports.rootSpec = rootSpec;
|