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

Unified Diff: lib/popupBlocker.js

Issue 29991594: Issue 7243 - Update adblockpluscore dependency to hg:e26e122e0702 (Closed) Base URL: https://hg.adblockplus.org/adblockpluschrome/
Patch Set: Compare CSP filters by text Created Jan. 31, 2019, 2:49 a.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 | « lib/hitLogger.js ('k') | lib/publicSuffixList.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/popupBlocker.js
===================================================================
--- a/lib/popupBlocker.js
+++ b/lib/popupBlocker.js
@@ -17,17 +17,18 @@
/** @module popupBlocker */
"use strict";
const {defaultMatcher} = require("../adblockpluscore/lib/matcher");
const {BlockingFilter,
RegExpFilter} = require("../adblockpluscore/lib/filterClasses");
-const {isThirdParty, extractHostFromFrame} = require("./url");
+const {isThirdParty} = require("../adblockpluscore/lib/domain");
+const {extractHostFromFrame} = require("./url");
const {checkWhitelisted} = require("./whitelisting");
const {logRequest} = require("./hitLogger");
let loadingPopups = new Map();
function forgetPopup(tabId)
{
loadingPopups.delete(tabId);
« no previous file with comments | « lib/hitLogger.js ('k') | lib/publicSuffixList.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld