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

Side by Side Diff: utils.js

Issue 29452181: Noissue - Merge current tip to Edge bookmark (Closed)
Patch Set: Created May 30, 2017, 3:49 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « subscriptionLink.postload.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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 /**
16 * Shortcut for document.getElementById(id)
17 */
18 function E(id)
19 {
20 return document.getElementById(id);
21 }
OLDNEW
« no previous file with comments | « subscriptionLink.postload.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld