blob: 80c73a99ebd0bf0a355ca694f47b68b42cb805c1 (
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("resource://devtools/shared/protocol/Actor.js");
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;
|