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

Delta Between Two Patch Sets: utils.js

Issue 29374674: Issue 4864 - Start using ESLint for adblockpluschrome (Closed)
Left Patch Set: Created Feb. 7, 2017, 4:49 p.m.
Right Patch Set: Use .includes again Created March 31, 2017, 8:37 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « subscriptionLink.postload.js ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 "use strict";
2
3 const {require, Services} = ext.backgroundPage.getWindow();
4
5 const {Synchronizer} = require("synchronizer");
6 const {Utils} = require("utils");
7 const {Prefs} = require("prefs");
8 const {FilterStorage} = require("filterStorage");
9 const {FilterNotifier} = require("filterNotifier");
10
11 const {Subscription, DownloadableSubscription} = require("subscriptionClasses");
12 const {Filter, BlockingFilter} = require("filterClasses");
13 const {defaultMatcher} = require("matcher");
14
15 // Shortcut for document.getElementById(id)
16 function E(id)
17 {
18 return document.getElementById(id);
19 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld