File: nsUrlClassifierLib.js

package info (click to toggle)
icedove 38.7.0-1~deb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,198,932 kB
  • sloc: cpp: 4,394,524; ansic: 1,840,286; python: 328,571; java: 272,798; xml: 150,944; asm: 138,937; sh: 86,963; makefile: 26,114; perl: 21,977; objc: 4,014; yacc: 1,968; lex: 1,179; exp: 499; lisp: 228; pascal: 211; awk: 152; ruby: 82; sed: 43; csh: 31; ada: 16; php: 1
file content (35 lines) | stat: -rw-r--r-- 1,192 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

// We wastefully reload the same JS files across components.  This puts all
// the common JS files used by safebrowsing and url-classifier into a
// single component.

const Cc = Components.classes;
const Ci = Components.interfaces;
const G_GDEBUG = false;

Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");

#include ./content/moz/lang.js
#include ./content/moz/preferences.js
#include ./content/moz/debug.js
#include ./content/moz/alarm.js
#include ./content/moz/cryptohasher.js
#include ./content/moz/observer.js
#include ./content/moz/protocol4.js

#include ./content/request-backoff.js
#include ./content/xml-fetcher.js

// Expose this whole component.
var lib = this;

function UrlClassifierLib() {
  this.wrappedJSObject = lib;
}
UrlClassifierLib.prototype.classID = Components.ID("{26a4a019-2827-4a89-a85c-5931a678823a}");
UrlClassifierLib.prototype.QueryInterface = XPCOMUtils.generateQI([]);

this.NSGetFactory = XPCOMUtils.generateNSGetFactory([UrlClassifierLib]);