diff -r 000000000000 -r 6474c204b198 intl/locale/src/nsLanguageAtomService.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/intl/locale/src/nsLanguageAtomService.h Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,46 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* 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/. */ + +#include "nsCOMPtr.h" +#include "nsICharsetConverterManager.h" +#include "nsILanguageAtomService.h" +#include "nsIStringBundle.h" +#include "nsInterfaceHashtable.h" +#include "nsIAtom.h" +#include "mozilla/Attributes.h" + +#define NS_LANGUAGEATOMSERVICE_CID \ + {0xB7C65853, 0x2996, 0x435E, {0x96, 0x54, 0xDC, 0xC1, 0x78, 0xAA, 0xB4, 0x8C}} + +class nsLanguageAtomService MOZ_FINAL : public nsILanguageAtomService +{ +public: + NS_DECL_ISUPPORTS + + // nsILanguageAtomService + virtual NS_HIDDEN_(nsIAtom*) + LookupLanguage(const nsACString &aLanguage, nsresult *aError); + + virtual NS_HIDDEN_(already_AddRefed) + LookupCharSet(const char *aCharSet, nsresult *aError); + + virtual NS_HIDDEN_(nsIAtom*) GetLocaleLanguage(nsresult *aError); + + virtual NS_HIDDEN_(nsIAtom*) GetLanguageGroup(nsIAtom *aLanguage, + nsresult *aError); + + nsLanguageAtomService() NS_HIDDEN; + +private: + NS_HIDDEN ~nsLanguageAtomService() { } + +protected: + NS_HIDDEN_(nsresult) InitLangGroupTable(); + + nsCOMPtr mCharSets; + nsInterfaceHashtable mLangToGroup; + nsCOMPtr mLangGroups; + nsCOMPtr mLocaleLanguage; +};