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

"use strict";

const { Actor } = require("devtools/shared/protocol/Actor");

class TestActor1 extends Actor {
  constructor(conn, tab) {
    super(conn);
    this.tab = tab;

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

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

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

exports.TestActor1 = TestActor1;