Bug 1859954 - Use XP_DARWIN rather than XP_MACOS in PHC r=glandium
[gecko.git] / devtools / shared / specs / frame.js
blob03127e1d9f68a643328b9700c1642f92e20e8309
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/. */
4 "use strict";
6 const {
7   generateActorSpec,
8   RetVal,
9 } = require("resource://devtools/shared/protocol.js");
11 const frameSpec = generateActorSpec({
12   typeName: "frame",
14   methods: {
15     getEnvironment: {
16       response: RetVal("json"),
17     },
18   },
19 });
21 exports.frameSpec = frameSpec;