diff options
Diffstat (limited to 'widget/components.conf')
-rw-r--r-- | widget/components.conf | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/widget/components.conf b/widget/components.conf new file mode 100644 index 0000000000..4fa7da3bc9 --- /dev/null +++ b/widget/components.conf @@ -0,0 +1,98 @@ +# -*- 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 = [ + { + 'js_name': 'clipboard', + 'cid': '{8b5314ba-db01-11d2-96ce-0060b0fb9956}', + 'contract_ids': ['@mozilla.org/widget/clipboard;1'], + 'constructor': 'nsClipboardSelector', + 'headers': ['/widget/nsContentProcessWidgetFactory.h'], + 'interfaces': ['nsIClipboard'], + 'overridable': True, + }, + { + 'cid': '{c0ed2a75-96f8-4166-91d4-2fe8774448dc}', + 'type': 'nsClipboardProxy', + 'headers': ['/widget/nsClipboardProxy.h'], + 'contract_ids': ['@mozilla.org/widget/content/clipboard;1'], + 'processes': ProcessSelector.CONTENT_PROCESS_ONLY, + }, + + { + 'cid': '{0f872c8c-3ee6-46bd-92a2-69652c6b474e}', + 'contract_ids': ['@mozilla.org/colorpicker;1'], + 'constructor': 'nsColorPickerSelector', + 'headers': ['/widget/nsContentProcessWidgetFactory.h'], + }, + { + 'cid': '{11a77259-9d16-4386-8ac8-94338ee22f78}', + 'type': 'nsColorPickerProxy', + 'headers': ['/widget/nsColorPickerProxy.h'], + 'contract_ids': ['@mozilla.org/content/colorpicker;1'], + 'processes': ProcessSelector.CONTENT_PROCESS_ONLY, + }, + + { + 'cid': '{8b5314bb-db01-11d2-96ce-0060b0fb9956}', + 'contract_ids': ['@mozilla.org/widget/dragservice;1'], + 'constructor': 'nsDragServiceSelector', + 'headers': ['/widget/nsContentProcessWidgetFactory.h'], + }, + { + 'cid': '{28be18ae-73ee-494f-8c6d-5d14b7c998c7}', + 'type': 'nsDragServiceProxy', + 'headers': ['/widget/nsDragServiceProxy.h'], + 'contract_ids': ['@mozilla.org/widget/content/dragservice;1'], + 'processes': ProcessSelector.CONTENT_PROCESS_ONLY, + }, + + { + 'cid': '{bd57cee8-1dd1-11b2-9fe7-95cf4709aea3}', + 'contract_ids': ['@mozilla.org/filepicker;1'], + 'constructor': 'nsFilePickerSelector', + 'headers': ['/widget/nsContentProcessWidgetFactory.h'], + }, + { + 'cid': '{40fd47f2-463a-4e4a-a33f-27eb148bfee4}', + 'type': 'nsFilePickerProxy', + 'headers': ['/widget/nsFilePickerProxy.h'], + 'contract_ids': ['@mozilla.org/content/filepicker;1'], + 'processes': ProcessSelector.CONTENT_PROCESS_ONLY, + }, + + { + 'cid': '{b148eed2-236d-11d3-b35c-00a0cc3c1cde}', + 'contract_ids': ['@mozilla.org/sound;1'], + 'singleton': True, + 'constructor': 'nsSoundSelector', + 'headers': ['/widget/nsContentProcessWidgetFactory.h'], + }, + { + 'cid': '{b02c2470-6e5a-4865-a202-8b5ebae52632}', + 'type': 'nsSoundProxy', + 'headers': ['/widget/nsSoundProxy.h'], + 'contract_ids': ['@mozilla.org/content/sound;1'], + 'processes': ProcessSelector.CONTENT_PROCESS_ONLY, + }, + + { + 'cid': '{c401eb80-f9ea-11d3-bb6f-e732b73ebe7c}', + 'contract_ids': ['@mozilla.org/gfx/screenmanager;1'], + 'singleton': True, + 'constructor': 'nsScreenManagerSelector', + 'headers': ['/widget/nsContentProcessWidgetFactory.h'], + }, + { + 'cid': '{b2cdd51c-4277-417b-a931-08306c7814c3}', + 'type': 'mozilla::widget::ScreenManager', + 'constructor': 'mozilla::widget::ScreenManager::GetAddRefedSingleton', + 'headers': ['mozilla/widget/ScreenManager.h'], + 'contract_ids': ['@mozilla.org/gfx/content/screenmanager;1'], + 'singleton': True, + 'processes': ProcessSelector.CONTENT_PROCESS_ONLY, + }, +] |