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

Unified Diff: lib/whitelisting.js

Issue 29713631: Issue 5760 - Use relative require paths (Closed)
Patch Set: Address PS4 comments, rebase Created April 5, 2018, 11: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
« no previous file with comments | « lib/utils.js ('k') | qunit/common.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/whitelisting.js
===================================================================
--- a/lib/whitelisting.js
+++ b/lib/whitelisting.js
@@ -14,25 +14,25 @@
* You should have received a copy of the GNU General Public License
* along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
*/
/** @module whitelisting */
"use strict";
-const {defaultMatcher} = require("matcher");
-const {Filter, RegExpFilter} = require("filterClasses");
-const {FilterNotifier} = require("filterNotifier");
-const {FilterStorage} = require("filterStorage");
+const {defaultMatcher} = require("../adblockpluscore/lib/matcher");
+const {Filter, RegExpFilter} = require("../adblockpluscore/lib/filterClasses");
+const {FilterNotifier} = require("../adblockpluscore/lib/filterNotifier");
+const {FilterStorage} = require("../adblockpluscore/lib/filterStorage");
const {stringifyURL, getDecodedHostname,
- extractHostFromFrame, isThirdParty} = require("url");
-const {port} = require("messaging");
-const {logWhitelistedDocument} = require("devtools");
-const {verifySignature} = require("rsa");
+ extractHostFromFrame, isThirdParty} = require("./url");
+const {port} = require("./messaging");
+const {logWhitelistedDocument} = require("./devtools");
+const {verifySignature} = require("../adblockpluscore/lib/rsa");
let sitekeys = new ext.PageMap();
function match(page, url, typeMask, docDomain, sitekey)
{
let thirdParty = !!docDomain && isThirdParty(url, docDomain);
let urlString = stringifyURL(url);
« no previous file with comments | « lib/utils.js ('k') | qunit/common.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld