27 lines
569 B
JavaScript
27 lines
569 B
JavaScript
/* 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;
|