Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: polyfill.js

Issue 29737561: Issue 6539, 6782 - Implement support for snippets (Closed) Base URL: https://hg.adblockplus.org/adblockpluschrome/
Left Patch Set: Update snippets.js to include just one log function Created April 26, 2018, 4:30 p.m.
Right Patch Set: Add explanatory comment in catch block Created July 19, 2018, 3:51 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « metadata.chrome ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
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-present eyeo GmbH 3 * Copyright (C) 2006-present 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 15 matching lines...) Expand all
26 "notifications.create", 26 "notifications.create",
27 "runtime.getBrowserInfo", 27 "runtime.getBrowserInfo",
28 "runtime.openOptionsPage", 28 "runtime.openOptionsPage",
29 "runtime.sendMessage", 29 "runtime.sendMessage",
30 "runtime.setUninstallURL", 30 "runtime.setUninstallURL",
31 "storage.local.get", 31 "storage.local.get",
32 "storage.local.remove", 32 "storage.local.remove",
33 "storage.local.set", 33 "storage.local.set",
34 "storage.managed.get", 34 "storage.managed.get",
35 "tabs.create", 35 "tabs.create",
36 "tabs.executeScript",
36 "tabs.get", 37 "tabs.get",
37 "tabs.getCurrent", 38 "tabs.getCurrent",
38 "tabs.insertCSS", 39 "tabs.insertCSS",
39 "tabs.query", 40 "tabs.query",
40 "tabs.reload", 41 "tabs.reload",
41 "tabs.remove", 42 "tabs.remove",
42 "tabs.removeCSS", 43 "tabs.removeCSS",
43 "tabs.sendMessage", 44 "tabs.sendMessage",
44 "tabs.update", 45 "tabs.update",
45 "webNavigation.getAllFrames", 46 "webNavigation.getAllFrames",
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 231
231 // Workaround since HTMLCollection, NodeList, StyleSheetList, and CSSRuleList 232 // Workaround since HTMLCollection, NodeList, StyleSheetList, and CSSRuleList
232 // didn't have iterator support before Chrome 51. 233 // didn't have iterator support before Chrome 51.
233 // https://bugs.chromium.org/p/chromium/issues/detail?id=401699 234 // https://bugs.chromium.org/p/chromium/issues/detail?id=401699
234 for (let object of [HTMLCollection, NodeList, StyleSheetList, CSSRuleList]) 235 for (let object of [HTMLCollection, NodeList, StyleSheetList, CSSRuleList])
235 { 236 {
236 if (!(Symbol.iterator in object.prototype)) 237 if (!(Symbol.iterator in object.prototype))
237 object.prototype[Symbol.iterator] = Array.prototype[Symbol.iterator]; 238 object.prototype[Symbol.iterator] = Array.prototype[Symbol.iterator];
238 } 239 }
239 } 240 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld