LEFT | RIGHT |
1 /* | 1 /* |
2 * This Source Code is subject to the terms of the Mozilla Public License | 2 * This Source Code is subject to the terms of the Mozilla Public License |
3 * version 2.0 (the "License"). You can obtain a copy of the License at | 3 * version 2.0 (the "License"). You can obtain a copy of the License at |
4 * http://mozilla.org/MPL/2.0/. | 4 * http://mozilla.org/MPL/2.0/. |
5 */ | 5 */ |
6 | 6 |
7 (function() | 7 (function() |
8 { | 8 { |
9 const Cu = Components.utils; | 9 const Cu = Components.utils; |
10 | 10 |
11 let rand = Components.stack.filename.replace(/.*\?/, ""); | 11 let rand = Components.stack.filename.replace(/.*\?/, ""); |
12 let module = "chrome://elemhidehelper/content/actor.jsm?" + rand; | 12 let module = "chrome://elemhidehelper/content/actor.jsm?" + rand; |
13 let {shutdown} = Cu.import(module, {}); | 13 let {shutdown, getNodeInfo} = Cu.import(module, {}); |
14 | 14 |
15 addMessageListener("ElemHideHelper:Shutdown", onShutdown); | 15 addMessageListener("ElemHideHelper:Shutdown", onShutdown); |
| 16 addMessageListener("ElemHideHelper:GetNodeInfo", onGetNodeInfo); |
16 | 17 |
17 function onShutdown() | 18 function onShutdown() |
18 { | 19 { |
19 shutdown(); | 20 shutdown(); |
20 Cu.unload(module); | 21 Cu.unload(module); |
21 removeMessageListener("ElemHideHelper:Shutdown", onShutdown); | 22 removeMessageListener("ElemHideHelper:Shutdown", onShutdown); |
| 23 removeMessageListener("ElemHideHelper:GetNodeInfo", onGetNodeInfo); |
| 24 } |
| 25 |
| 26 function onGetNodeInfo(message) |
| 27 { |
| 28 let info = getNodeInfo(message.objects.element); |
| 29 message.objects.callback(info.nodeData, info.host); |
22 } | 30 } |
23 })(); | 31 })(); |
LEFT | RIGHT |