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