summaryrefslogtreecommitdiffstats
path: root/widget/components.conf
blob: ecf1cd5009c880fefa7fe9618286b08e0b62baa4 (plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# -*- 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': '{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,
    },
]