Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef mozSpellI18NManager_h__
7 #define mozSpellI18NManager_h__
9 #include "nsCOMPtr.h"
10 #include "mozISpellI18NManager.h"
11 #include "nsCycleCollectionParticipant.h"
13 #define MOZ_SPELLI18NMANAGER_CONTRACTID "@mozilla.org/spellchecker/i18nmanager;1"
14 #define MOZ_SPELLI18NMANAGER_CID \
15 { /* {AEB8936F-219C-4D3C-8385-D9382DAA551A} */ \
16 0xaeb8936f, 0x219c, 0x4d3c, \
17 { 0x83, 0x85, 0xd9, 0x38, 0x2d, 0xaa, 0x55, 0x1a } }
19 class mozSpellI18NManager : public mozISpellI18NManager
20 {
21 public:
22 NS_DECL_ISUPPORTS
23 NS_DECL_MOZISPELLI18NMANAGER
25 mozSpellI18NManager();
26 virtual ~mozSpellI18NManager();
27 };
28 #endif