You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
2.2 KiB

  1. /*******************************************************************************
  2. µBlock - a browser extension to block requests.
  3. Copyright (C) 2014 The µBlock authors
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see {http://www.gnu.org/licenses/}.
  14. Home: https://github.com/gorhill/uBlock
  15. */
  16. /* globals Services, sendAsyncMessage, addMessageListener, removeMessageListener */
  17. /******************************************************************************/
  18. (function(frameScriptContext) {
  19. 'use strict';
  20. /******************************************************************************/
  21. let appName;
  22. let listeners = {};
  23. try { throw new Error; } catch (ex) {
  24. appName = ex.fileName.match(/:\/\/([^\/]+)/)[1];
  25. }
  26. Components.utils['import']('chrome://' + appName + '/content/frameModule.js', {});
  27. /******************************************************************************/
  28. frameScriptContext[appName + '_addMessageListener'] = function(id, fn) {
  29. frameScriptContext[appName + '_removeMessageListener'](id);
  30. listeners[id] = function(msg) {
  31. fn(msg.data);
  32. };
  33. addMessageListener(id, listeners[id]);
  34. };
  35. frameScriptContext[appName + '_removeMessageListener'] = function(id) {
  36. if (listeners[id]) {
  37. removeMessageListener(id, listeners[id]);
  38. }
  39. delete listeners[id];
  40. };
  41. /******************************************************************************/
  42. addMessageListener(appName + ':broadcast', function(msg) {
  43. for (let id in listeners) {
  44. listeners[id](msg);
  45. }
  46. });
  47. /******************************************************************************/
  48. })(this);
  49. /******************************************************************************/