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

Unified Diff: background.js

Issue 29328928: Issue 3170 - Fixed: Sitekey not considered for element collapsing (Closed)
Patch Set: Created Oct. 7, 2015, 5:57 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: background.js
===================================================================
--- a/background.js
+++ b/background.js
@@ -346,7 +346,8 @@
var url = new URL(msg.urls[i], msg.baseURL);
var filter = defaultMatcher.matchesAny(
stringifyURL(url), typeMask,
- documentHost, isThirdParty(url, documentHost)
+ documentHost, isThirdParty(url, documentHost),
+ getKey(sender.page, sender.frame)
Sebastian Noack 2015/10/08 04:45:04 Mind getting the key above, outside of the loop?
Thomas Greiner 2015/10/08 12:39:36 Done.
);
if (filter instanceof BlockingFilter)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld