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

Unified Diff: lib/contentPolicy.js

Issue 6337686776315904: Issue 394 - hit statistics tool data collection (Closed)
Patch Set: Rebase to changeset: 4095 Created Dec. 15, 2015, 6:09 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
Index: lib/contentPolicy.js
===================================================================
--- a/lib/contentPolicy.js
+++ b/lib/contentPolicy.js
@@ -108,7 +108,10 @@
function addHit(frameIndex, contentType, docDomain, thirdParty, location, filter)
{
if (filter && !isPrivate)
- FilterStorage.increaseHitCount(filter);
+ {
+ let topWindowLocation = frames[frames.length-1].location;
+ FilterStorage.increaseHitCount(filter, getHostname(topWindowLocation));
Wladimir Palant 2016/02/15 12:25:40 getHostname(topWindowLocation) should be identical
saroyanm 2016/02/19 17:38:11 Done.
+ }
hits.push({
frameIndex, contentType, docDomain, thirdParty, location,
filter: filter ? filter.text : null,

Powered by Google App Engine
This is Rietveld