summaryrefslogtreecommitdiffstats
path: root/devtools/shared/specs/array-buffer.js
blob: ba7650ff61f5b006802ab9736061f209bf2447f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* 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 protocol = require("resource://devtools/shared/protocol.js");
const { Arg, RetVal, generateActorSpec } = protocol;

const arrayBufferSpec = generateActorSpec({
  typeName: "arraybuffer",

  methods: {
    slice: {
      request: {
        start: Arg(0),
        count: Arg(1),
      },
      response: RetVal("json"),
    },
    release: { release: true },
  },
});

exports.arrayBufferSpec = arrayBufferSpec;