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

Side by Side Diff: lib/devtools.js

Issue 29998582: Issue [TBD] - Update adblockpluscore dependency to [TBD] Base URL: https://hg.adblockplus.org/adblockpluschrome/
Patch Set: Reformat Created Feb. 5, 2019, 5:45 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « lib/csp.js ('k') | lib/filterComposer.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 panel.records.push({request, filter}); 108 panel.records.push({request, filter});
109 } 109 }
110 } 110 }
111 111
112 function matchRequest(request) 112 function matchRequest(request)
113 { 113 {
114 return defaultMatcher.matchesAny( 114 return defaultMatcher.matchesAny(
115 request.url, 115 request.url,
116 RegExpFilter.typeMap[request.type], 116 RegExpFilter.typeMap[request.type],
117 request.docDomain, 117 request.docDomain,
118 request.thirdParty,
119 request.sitekey, 118 request.sitekey,
120 request.specificOnly 119 request.specificOnly
121 ); 120 );
122 } 121 }
123 122
124 function onBeforeRequest(details) 123 function onBeforeRequest(details)
125 { 124 {
126 let panel = panels.get(details.tabId); 125 let panel = panels.get(details.tabId);
127 126
128 // Clear the devtools panel and reload the inspected tab without caching 127 // Clear the devtools panel and reload the inspected tab without caching
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 ext.pages.onLoading.removeListener(onLoading); 280 ext.pages.onLoading.removeListener(onLoading);
282 filterNotifier.off("filter.added", onFilterAdded); 281 filterNotifier.off("filter.added", onFilterAdded);
283 filterNotifier.off("filter.removed", onFilterRemoved); 282 filterNotifier.off("filter.removed", onFilterRemoved);
284 filterNotifier.off("subscription.added", onSubscriptionAdded); 283 filterNotifier.off("subscription.added", onSubscriptionAdded);
285 } 284 }
286 }); 285 });
287 286
288 HitLogger.addListener(inspectedTabId, hitListener); 287 HitLogger.addListener(inspectedTabId, hitListener);
289 panels.set(inspectedTabId, panel); 288 panels.set(inspectedTabId, panel);
290 }); 289 });
OLDNEW
« no previous file with comments | « lib/csp.js ('k') | lib/filterComposer.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld