tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

heap-snapshot-file.js (617B)


      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";
      5 
      6 const {
      7  Arg,
      8  generateActorSpec,
      9  BULK_RESPONSE,
     10 } = require("resource://devtools/shared/protocol.js");
     11 
     12 const heapSnapshotFileSpec = generateActorSpec({
     13  typeName: "heapSnapshotFile",
     14 
     15  methods: {
     16    transferHeapSnapshot: {
     17      request: {
     18        snapshotId: Arg(0, "string"),
     19      },
     20      response: BULK_RESPONSE,
     21    },
     22  },
     23 });
     24 
     25 exports.heapSnapshotFileSpec = heapSnapshotFileSpec;