mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 04:39:03 +02:00
This changes the registration code so that categories are still registered in the manifest (and thus not registered in GeckoView), but the component is still always shipped. Differential Revision: https://phabricator.services.mozilla.com/D33478 --HG-- extra : moz-landing-system : lando
15 lines
601 B
Python
15 lines
601 B
Python
# -*- 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': '{117b219f-92fe-4bd2-a21b-95a342a9d474}',
|
|
'contract_ids': ['@mozilla.org/base/telemetry-startup;1'],
|
|
'jsm': 'resource://gre/modules/TelemetryStartup.jsm',
|
|
'constructor': 'TelemetryStartup',
|
|
'processes': ProcessSelector.MAIN_PROCESS_ONLY,
|
|
},
|
|
]
|