blob: c0027e1e674992e44f183b425fbf60ef877e0c20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* 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 PostInitTargetScopedActor extends Actor {
constructor(conn) {
super(conn);
this.typeName = "postInitTargetScoped";
this.requestTypes = {
ping: this.onPing,
};
}
onPing() {
return { message: "pong" };
}
}
exports.PostInitTargetScopedActor = PostInitTargetScopedActor;
|