| Left: | ||
| Right: |
| 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 |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 16 */ | 16 */ |
| 17 | 17 |
| 18 let {XPCOMUtils} = Cu.import("resource://gre/modules/XPCOMUtils.jsm", null); | 18 let {XPCOMUtils} = Cu.import("resource://gre/modules/XPCOMUtils.jsm", null); |
| 19 let {Services} = Cu.import("resource://gre/modules/Services.jsm", null); | 19 let {Services} = Cu.import("resource://gre/modules/Services.jsm", null); |
| 20 | 20 |
| 21 let {_EventTarget: EventTarget} = require("ext_common"); | 21 let {_EventTarget: EventTarget, i18n: i18n} = require("ext_common"); |
|
Sebastian Noack
2017/02/20 16:53:20
You don't have to specify both destination and ori
wspee
2017/03/01 14:54:08
Done.
| |
| 22 let {port} = require("messaging"); | 22 let {port} = require("messaging"); |
| 23 | 23 |
| 24 exports.onMessage = new EventTarget(port); | 24 exports.onMessage = new EventTarget(port); |
| 25 exports.i18n = i18n; | |
| 25 | 26 |
| 26 function Page(windowID) | 27 function Page(windowID) |
| 27 { | 28 { |
| 28 this._windowID = windowID; | 29 this._windowID = windowID; |
| 29 } | 30 } |
| 30 Page.prototype = { | 31 Page.prototype = { |
| 31 sendMessage: function(payload) | 32 sendMessage: function(payload) |
| 32 { | 33 { |
| 33 port.emit("ext_message", {targetID: this._windowID, payload}); | 34 port.emit("ext_message", {targetID: this._windowID, payload}); |
| 34 } | 35 } |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 69 { | 70 { |
| 70 return this._map.delete(page._windowID); | 71 return this._map.delete(page._windowID); |
| 71 } | 72 } |
| 72 }; | 73 }; |
| 73 exports.PageMap = PageMap; | 74 exports.PageMap = PageMap; |
| 74 | 75 |
| 75 exports.showOptions = function() | 76 exports.showOptions = function() |
| 76 { | 77 { |
| 77 require("ui").UI.openFiltersDialog(); | 78 require("ui").UI.openFiltersDialog(); |
| 78 }; | 79 }; |
| OLD | NEW |