browser/devtools/debugger/test/testactors.js

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

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");

mercurial