Bug 1891710: part 2) Enable <Element-outerHTML.html> WPT for Trusted Types. r=smaug
[gecko.git] / devtools / shared / specs / objects-manager.js
blob31236db3e175e6d0a2c072562d929416a4f9b7e3
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 "use strict";
7 const {
8   generateActorSpec,
9   Arg,
10 } = require("resource://devtools/shared/protocol.js");
12 const objectsManagerSpec = generateActorSpec({
13   typeName: "objects-manager",
15   methods: {
16     releaseObjects: {
17       request: {
18         actorIDs: Arg(0, "array:string"),
19       },
20       response: {},
21     },
22   },
23 });
25 exports.objectsManagerSpec = objectsManagerSpec;