summaryrefslogtreecommitdiffstats
path: root/toolkit/components/resistfingerprinting/components.conf
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/components/resistfingerprinting/components.conf')
-rw-r--r--toolkit/components/resistfingerprinting/components.conf37
1 files changed, 37 insertions, 0 deletions
diff --git a/toolkit/components/resistfingerprinting/components.conf b/toolkit/components/resistfingerprinting/components.conf
new file mode 100644
index 0000000000..aae29becf4
--- /dev/null
+++ b/toolkit/components/resistfingerprinting/components.conf
@@ -0,0 +1,37 @@
+# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
+# vim: set filetype=python:
+# 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/.
+
+Classes = [
+ {
+ 'name': 'RFPService',
+ 'cid': '{20093b2e-d5d5-4ce0-8355-96b8d2dc7ff5}',
+ 'interfaces': ['nsIRFPService'],
+ 'contract_ids': ['@mozilla.org/rfp-service;1'],
+ 'type': 'mozilla::nsRFPService',
+ 'headers': ['/toolkit/components/resistfingerprinting/nsRFPService.h'],
+ 'singleton': True,
+ 'constructor': 'mozilla::nsRFPService::GetOrCreate',
+ 'js_name': 'rfp',
+ 'categories': {
+ 'profile-after-change': 'nsRFPService',
+ },
+ 'processes': ProcessSelector.MAIN_PROCESS_ONLY,
+ },
+ {
+ 'cid': '{07f45442-1806-44be-9230-12eb79de9bac}',
+ 'contract_ids': ['@mozilla.org/fingerprinting-override;1'],
+ 'esModule': 'resource://gre/modules/FingerprintingWebCompatService.sys.mjs',
+ 'constructor': 'FingerprintingOverride',
+ },
+ {
+ 'cid': '{e7b1da06-2594-4670-aea4-131070baca4c}',
+ 'contract_ids': ['@mozilla.org/fingerprinting-webcompat-service;1'],
+ 'singleton': True,
+ 'esModule': 'resource://gre/modules/FingerprintingWebCompatService.sys.mjs',
+ 'constructor': 'FingerprintingWebCompatService',
+ 'processes': ProcessSelector.MAIN_PROCESS_ONLY,
+ },
+]