michael@0: /* Any copyright is dedicated to the Public Domain. michael@0: http://creativecommons.org/publicdomain/zero/1.0/ */ michael@0: michael@0: function Actor() {} michael@0: michael@0: exports.register = function(handle) { michael@0: handle.addTabActor(Actor, "registeredActor1"); michael@0: handle.addGlobalActor(Actor, "registeredActor1"); michael@0: } michael@0: michael@0: exports.unregister = function(handle) { michael@0: handle.removeTabActor(Actor); michael@0: handle.removeGlobalActor(Actor); michael@0: } michael@0: