tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

components.conf (1070B)


      1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
      2 # vim: set filetype=python:
      3 # This Source Code Form is subject to the terms of the Mozilla Public
      4 # License, v. 2.0. If a copy of the MPL was not distributed with this
      5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      6 
      7 Classes = [
      8     {
      9         'name': 'Locale',
     10 	'js_name': 'locale',
     11         'cid': '{92735ff4-6384-4ad6-8508-757010e149ee}',
     12         'contract_ids': ['@mozilla.org/intl/localeservice;1'],
     13         'interfaces': ['mozILocaleService'],
     14         'singleton': True,
     15         'type': 'mozilla::intl::LocaleService',
     16         'headers': ['mozilla/intl/LocaleService.h'],
     17         'constructor': 'mozilla::intl::LocaleService::GetInstanceAddRefed',
     18     },
     19     {
     20         'cid': '{65944815-e9ae-48bd-a2bf-f1108720950c}',
     21         'contract_ids': ['@mozilla.org/intl/ospreferences;1'],
     22         'singleton': True,
     23         'type': 'mozilla::intl::OSPreferences',
     24         'headers': ['mozilla/intl/OSPreferences.h'],
     25         'constructor': 'mozilla::intl::OSPreferences::GetInstanceAddRefed',
     26     },
     27 ]