-1:000000000000 | 0:b9154bb88b1a |
---|---|
1 /* Any copyright is dedicated to the Public Domain. | |
2 http://creativecommons.org/publicdomain/zero/1.0/ */ | |
3 | |
4 function PreInitGlobalActor(aConnection) {} | |
5 | |
6 PreInitGlobalActor.prototype = { | |
7 actorPrefix: "preInitGlobal", | |
8 onPing: function onPing(aRequest) { | |
9 return { message: "pong" }; | |
10 }, | |
11 }; | |
12 | |
13 PreInitGlobalActor.prototype.requestTypes = { | |
14 "ping": PreInitGlobalActor.prototype.onPing, | |
15 }; | |
16 | |
17 DebuggerServer.addGlobalActor(PreInitGlobalActor, "preInitGlobalActor"); |