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.

69 lines
2.2 KiB

10 years ago
10 years ago
10 years ago
  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 addMessageListener, removeMessageListener */
  17. /******************************************************************************/
  18. // https://bugzil.la/673569
  19. (function(frameScriptContext) {
  20. 'use strict';
  21. /******************************************************************************/
  22. let appName = Components.stack.filename.match(/:\/\/([^\/]+)/)[1];
  23. let listeners = {};
  24. Components.utils['import'](Components.stack.filename.replace('Script', 'Module'), {});
  25. /******************************************************************************/
  26. frameScriptContext[appName + '_addMessageListener'] = function(id, fn) {
  27. frameScriptContext[appName + '_removeMessageListener'](id);
  28. listeners[id] = function(msg) {
  29. fn(msg.data);
  30. };
  31. addMessageListener(id, listeners[id]);
  32. };
  33. frameScriptContext[appName + '_removeMessageListener'] = function(id) {
  34. if ( listeners[id] ) {
  35. removeMessageListener(id, listeners[id]);
  36. }
  37. delete listeners[id];
  38. };
  39. /******************************************************************************/
  40. addMessageListener(appName + ':broadcast', function(msg) {
  41. for ( let id in listeners ) {
  42. listeners[id](msg);
  43. }
  44. });
  45. /******************************************************************************/
  46. })(this);
  47. /******************************************************************************/