summaryrefslogtreecommitdiffstats
path: root/devtools/client/shared/test/testactors.js
blob: 79b0240723bdfaa46ebb5ab6aeb696d608231641 (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
25
26
27
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

const { Actor } = require("resource://devtools/shared/protocol/Actor.js");

class TestActor1 extends Actor {
  constructor(conn, tab) {
    super(conn, { typeName: "testOne", methods: [] });
    this.tab = tab;

    this.requestTypes = {
      ping: TestActor1.prototype.onPing,
    };
  }

  grip() {
    return { actor: this.actorID, test: "TestActor1" };
  }

  onPing() {
    return { pong: "pong" };
  }
}

exports.TestActor1 = TestActor1;