| 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 "use strict"; | 18 "use strict"; |
| 19 | 19 |
| 20 /** | 20 /** |
| 21 * @fileOverview Handles notifications. | 21 * @fileOverview Handles notifications. |
| 22 */ | 22 */ |
| 23 | 23 |
| 24 const {Services} = Cu.import("resource://gre/modules/Services.jsm", {}); | 24 Cu.import("resource://gre/modules/Services.jsm"); |
| 25 | 25 |
| 26 const {Prefs} = require("prefs"); | 26 const {Prefs} = require("prefs"); |
| 27 const {Downloader, Downloadable, | 27 const {Downloader, Downloadable, |
| 28 MILLIS_IN_MINUTE, MILLIS_IN_HOUR, MILLIS_IN_DAY} = require("downloader"); | 28 MILLIS_IN_MINUTE, MILLIS_IN_HOUR, MILLIS_IN_DAY} = require("downloader"); |
| 29 const {Utils} = require("utils"); | 29 const {Utils} = require("utils"); |
| 30 const {Matcher, defaultMatcher} = require("matcher"); | 30 const {Matcher, defaultMatcher} = require("matcher"); |
| 31 const {Filter, RegExpFilter, WhitelistFilter} = require("filterClasses"); | 31 const {Filter, RegExpFilter, WhitelistFilter} = require("filterClasses"); |
| 32 | 32 |
| 33 const INITIAL_DELAY = 1 * MILLIS_IN_MINUTE; | 33 const INITIAL_DELAY = 1 * MILLIS_IN_MINUTE; |
| 34 const CHECK_INTERVAL = 1 * MILLIS_IN_HOUR; | 34 const CHECK_INTERVAL = 1 * MILLIS_IN_HOUR; |
| (...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 else if (index != -1 && forceValue !== true) | 466 else if (index != -1 && forceValue !== true) |
| 467 categories.splice(index, 1); | 467 categories.splice(index, 1); |
| 468 | 468 |
| 469 // HACK: JSON values aren't saved unless they are assigned a | 469 // HACK: JSON values aren't saved unless they are assigned a |
| 470 // different object. | 470 // different object. |
| 471 Prefs.notifications_ignoredcategories = | 471 Prefs.notifications_ignoredcategories = |
| 472 JSON.parse(JSON.stringify(categories)); | 472 JSON.parse(JSON.stringify(categories)); |
| 473 } | 473 } |
| 474 }; | 474 }; |
| 475 Notification.init(); | 475 Notification.init(); |
| OLD | NEW |