summaryrefslogtreecommitdiffstats
path: root/remote/components/components.conf
blob: e518af3dd57dc1e93f9ee4117902611d4b543d33 (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
# 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 = [
    # Remote Agent
    {
        "cid": "{8f685a9d-8181-46d6-a71d-869289099c6d}",
        "contract_ids": ["@mozilla.org/remote/agent;1"],
        "categories": {
            "command-line-handler": "m-remote",
            "profile-after-change": "RemoteAgent",
        },
        'esModule': "chrome://remote/content/components/RemoteAgent.sys.mjs",
        "constructor": "RemoteAgentFactory",
    },

    # Marionette
    {
        "cid": "{786a1369-dca5-4adc-8486-33d23c88010a}",
        "contract_ids": ["@mozilla.org/remote/marionette;1"],
        "categories": {
            "command-line-handler": "m-marionette",
            "profile-after-change": "Marionette",
        },
        'esModule': "chrome://remote/content/components/Marionette.sys.mjs",
        "constructor": "MarionetteFactory",
    },
]