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