michael@0: /* Any copyright is dedicated to the Public Domain. michael@0: http://creativecommons.org/publicdomain/zero/1.0/ */ michael@0: michael@0: function PostInitGlobalActor(aConnection) {} michael@0: michael@0: PostInitGlobalActor.prototype = { michael@0: actorPrefix: "postInitGlobal", michael@0: onPing: function onPing(aRequest) { michael@0: return { message: "pong" }; michael@0: }, michael@0: }; michael@0: michael@0: PostInitGlobalActor.prototype.requestTypes = { michael@0: "ping": PostInitGlobalActor.prototype.onPing, michael@0: }; michael@0: michael@0: DebuggerServer.addGlobalActor(PostInitGlobalActor, "postInitGlobalActor");