| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-2016 Eyeo GmbH | 3 * Copyright (C) 2006-2016 Eyeo GmbH |
| 4 * | 4 * |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
| 7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
| 8 * | 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 bootstrapChildProcesses(); | 25 bootstrapChildProcesses(); |
| 26 registerPublicAPI(); | 26 registerPublicAPI(); |
| 27 require("filterListener"); | 27 require("filterListener"); |
| 28 require("contentPolicy"); | 28 require("contentPolicy"); |
| 29 require("synchronizer"); | 29 require("synchronizer"); |
| 30 require("notification"); | 30 require("notification"); |
| 31 require("sync"); | 31 require("sync"); |
| 32 require("messageResponder"); | 32 require("messageResponder"); |
| 33 require("ui"); | 33 require("ui"); |
| 34 require("objectTabs"); | 34 require("objectTabs"); |
| 35 require("cssProperties"); | |
| 36 | 35 |
| 37 function bootstrapChildProcesses() | 36 function bootstrapChildProcesses() |
| 38 { | 37 { |
| 39 let info = require("info"); | 38 let info = require("info"); |
| 40 | 39 |
| 41 let processScript = info.addonRoot + "lib/child/bootstrap.js?" + | 40 let processScript = info.addonRoot + "lib/child/bootstrap.js?" + |
| 42 Math.random() + "#" + encodeURIComponent(JSON.stringify(info)); | 41 Math.random() + "#" + encodeURIComponent(JSON.stringify(info)); |
| 43 let messageManager = Cc["@mozilla.org/parentprocessmessagemanager;1"] | 42 let messageManager = Cc["@mozilla.org/parentprocessmessagemanager;1"] |
| 44 .getService(Ci.nsIProcessScriptLoader) | 43 .getService(Ci.nsIProcessScriptLoader) |
| 45 .QueryInterface(Ci.nsIMessageBroadcaster); | 44 .QueryInterface(Ci.nsIMessageBroadcaster); |
| (...skipping 28 matching lines...) Expand all Loading... |
| 74 | 73 |
| 75 let registrar = Components.manager.QueryInterface(Ci.nsIComponentRegistrar); | 74 let registrar = Components.manager.QueryInterface(Ci.nsIComponentRegistrar); |
| 76 registrar.registerFactory(classID, "Adblock Plus public API URL", contractID,
factory); | 75 registrar.registerFactory(classID, "Adblock Plus public API URL", contractID,
factory); |
| 77 | 76 |
| 78 onShutdown.add(function() | 77 onShutdown.add(function() |
| 79 { | 78 { |
| 80 registrar.unregisterFactory(classID, factory); | 79 registrar.unregisterFactory(classID, factory); |
| 81 Cu.unload(uri.spec); | 80 Cu.unload(uri.spec); |
| 82 }); | 81 }); |
| 83 } | 82 } |
| OLD | NEW |