OLD | NEW |
1 /* | 1 /* |
2 * This file is part of the Adblock Plus, | 2 * This file is part of the Adblock Plus, |
3 * Copyright (C) 2006-2012 Eyeo GmbH | 3 * Copyright (C) 2006-2012 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 |
(...skipping 11 matching lines...) Expand all Loading... |
22 Cu.import("resource://gre/modules/Services.jsm"); | 22 Cu.import("resource://gre/modules/Services.jsm"); |
23 | 23 |
24 let {Utils} = require("utils"); | 24 let {Utils} = require("utils"); |
25 let {BlockingFilter, WhitelistFilter, ElemHideBase, ElemHideFilter, ElemHideExce
ption} = require("filterClasses"); | 25 let {BlockingFilter, WhitelistFilter, ElemHideBase, ElemHideFilter, ElemHideExce
ption} = require("filterClasses"); |
26 | 26 |
27 let nodeData = new WeakMap(); | 27 let nodeData = new WeakMap(); |
28 let windowStats = new WeakMap(); | 28 let windowStats = new WeakMap(); |
29 let windowSelection = new WeakMap(); | 29 let windowSelection = new WeakMap(); |
30 | 30 |
31 let setEntry, hasEntry, getEntry; | 31 let setEntry, hasEntry, getEntry; |
32 if (Services.vc.compare(Utils.platformVersion, "13.0") >= 0) | 32 if (false) |
33 { | 33 { |
34 // Bug 673468 is fixed, we can use weak maps | 34 // Bug 673468 and bug 819131 are fixed, we can use weak maps |
35 setEntry = function(map, key, value) map.set(key, value); | 35 setEntry = function(map, key, value) map.set(key, value); |
36 hasEntry = function(map, key) map.has(key); | 36 hasEntry = function(map, key) map.has(key); |
37 getEntry = function(map, key) map.get(key); | 37 getEntry = function(map, key) map.get(key); |
38 } | 38 } |
39 else | 39 else |
40 { | 40 { |
41 // Fall back to user data | 41 // Fall back to user data |
42 let dataSeed = Math.random(); | 42 let dataSeed = Math.random(); |
43 let nodeDataProp = "abpNodeData" + dataSeed; | 43 let nodeDataProp = "abpNodeData" + dataSeed; |
44 let windowStatsProp = "abpWindowStats" + dataSeed; | 44 let windowStatsProp = "abpWindowStats" + dataSeed; |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 if (typeof existingData == "undefined") | 374 if (typeof existingData == "undefined") |
375 { | 375 { |
376 existingData = {}; | 376 existingData = {}; |
377 setEntry(nodeData, node, existingData); | 377 setEntry(nodeData, node, existingData); |
378 } | 378 } |
379 | 379 |
380 // Add this request to the node data | 380 // Add this request to the node data |
381 existingData[this.type + " " + this.location] = this; | 381 existingData[this.type + " " + this.location] = this; |
382 } | 382 } |
383 }; | 383 }; |
OLD | NEW |