Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* Any copyright is dedicated to the Public Domain. |
michael@0 | 2 | http://creativecommons.org/publicdomain/zero/1.0/ */ |
michael@0 | 3 | |
michael@0 | 4 | function TestActor1(aConnection, aTab) |
michael@0 | 5 | { |
michael@0 | 6 | this.conn = aConnection; |
michael@0 | 7 | this.tab = aTab; |
michael@0 | 8 | } |
michael@0 | 9 | |
michael@0 | 10 | TestActor1.prototype = { |
michael@0 | 11 | actorPrefix: "test_one", |
michael@0 | 12 | |
michael@0 | 13 | grip: function TA1_grip() { |
michael@0 | 14 | return { actor: this.actorID, |
michael@0 | 15 | test: "TestActor1" }; |
michael@0 | 16 | }, |
michael@0 | 17 | |
michael@0 | 18 | onPing: function TA1_onPing() { |
michael@0 | 19 | return { pong: "pong" }; |
michael@0 | 20 | } |
michael@0 | 21 | }; |
michael@0 | 22 | |
michael@0 | 23 | TestActor1.prototype.requestTypes = { |
michael@0 | 24 | "ping": TestActor1.prototype.onPing |
michael@0 | 25 | }; |
michael@0 | 26 | |
michael@0 | 27 | DebuggerServer.removeTabActor(TestActor1); |
michael@0 | 28 | DebuggerServer.removeGlobalActor(TestActor1); |
michael@0 | 29 | |
michael@0 | 30 | DebuggerServer.addTabActor(TestActor1, "testTabActor1"); |
michael@0 | 31 | DebuggerServer.addGlobalActor(TestActor1, "testGlobalActor1"); |