diff options
Diffstat (limited to 'comm/chat/components/src/components.conf')
-rw-r--r-- | comm/chat/components/src/components.conf | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/comm/chat/components/src/components.conf b/comm/chat/components/src/components.conf new file mode 100644 index 0000000000..cec63d9801 --- /dev/null +++ b/comm/chat/components/src/components.conf @@ -0,0 +1,50 @@ +# -*- 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 = [ + { + "cid": "{a94b5427-cd8d-40cf-b47e-b67671953e70}", + "contract_ids": ["@mozilla.org/chat/accounts-service;1"], + 'esModule': "resource:///modules/imAccounts.sys.mjs", + "constructor": "AccountsService", + }, + { + "cid": "{7cb20c68-ccc8-4a79-b6f1-0b4771ed6c23}", + "contract_ids": ["@mozilla.org/chat/commands-service;1"], + 'esModule': "resource:///modules/imCommands.sys.mjs", + "constructor": "CommandsService", + }, + { + "cid": "{8c3725dd-ee26-489d-8135-736015af8c7f}", + "contract_ids": ["@mozilla.org/chat/contacts-service;1"], + 'esModule': "resource:///modules/imContacts.sys.mjs", + "constructor": "ContactsService", + }, + { + "cid": "{1fa92237-4303-4384-b8ac-4e65b50810a5}", + "contract_ids": ["@mozilla.org/chat/tags-service;1"], + 'esModule': "resource:///modules/imContacts.sys.mjs", + "constructor": "TagsService", + }, + { + "cid": "{b2397cd5-c76d-4618-8410-f344c7c6443a}", + "contract_ids": ["@mozilla.org/chat/conversations-service;1"], + 'esModule': "resource:///modules/imConversations.sys.mjs", + "constructor": "ConversationsService", + }, + { + "cid": "{073f5953-853c-4a38-bd81-255510c31c2e}", + "contract_ids": ["@mozilla.org/chat/core-service;1"], + 'esModule': "resource:///modules/imCore.sys.mjs", + "constructor": "CoreService", + }, + { + "cid": "{fb0dc220-2c7a-4216-9f19-6b8f3480eae9}", + "contract_ids": ["@mozilla.org/chat/logger;1"], + 'esModule': "resource:///modules/logger.sys.mjs", + "constructor": "Logger", + }, +] |