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