| 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 FilterStorage class responsible for managing user's | 21 * @fileOverview FilterStorage class responsible for managing user's |
| 22 * subscriptions and filters. | 22 * subscriptions and filters. |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 const {FileUtils} = Cu.import("resource://gre/modules/FileUtils.jsm", {}); | 25 Cu.import("resource://gre/modules/FileUtils.jsm"); |
| 26 const {Services} = Cu.import("resource://gre/modules/Services.jsm", {}); | 26 Cu.import("resource://gre/modules/Services.jsm"); |
| 27 | 27 |
| 28 const {IO} = require("io"); | 28 const {IO} = require("io"); |
| 29 const {Prefs} = require("prefs"); | 29 const {Prefs} = require("prefs"); |
| 30 const {Filter, ActiveFilter} = require("filterClasses"); | 30 const {Filter, ActiveFilter} = require("filterClasses"); |
| 31 const {Subscription, SpecialSubscription, | 31 const {Subscription, SpecialSubscription, |
| 32 ExternalSubscription} = require("subscriptionClasses"); | 32 ExternalSubscription} = require("subscriptionClasses"); |
| 33 const {FilterNotifier} = require("filterNotifier"); | 33 const {FilterNotifier} = require("filterNotifier"); |
| 34 const {Utils} = require("utils"); | 34 const {Utils} = require("utils"); |
| 35 | 35 |
| 36 /** | 36 /** |
| (...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 865 Subscription.knownSubscriptions = origKnownSubscriptions; | 865 Subscription.knownSubscriptions = origKnownSubscriptions; |
| 866 } | 866 } |
| 867 | 867 |
| 868 // Allow events to be processed every now and then. | 868 // Allow events to be processed every now and then. |
| 869 // Note: IO.readFromFile() will deal with the potential reentrance here. | 869 // Note: IO.readFromFile() will deal with the potential reentrance here. |
| 870 this.linesProcessed++; | 870 this.linesProcessed++; |
| 871 if (this.linesProcessed % 1000 == 0) | 871 if (this.linesProcessed % 1000 == 0) |
| 872 return Utils.yield(); | 872 return Utils.yield(); |
| 873 } | 873 } |
| 874 }; | 874 }; |
| OLD | NEW |