https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 2a5a3240ef5cb2b502e850243824771365ca1839 authored by B2G Bumper Bot on 04 January 2016, 10:23:20 UTC
Bumping manifests a=b2g-bump
Tip revision: 2a5a324
nsLanguageAtomService.h
/* -*- 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 "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 nsIAtom*
    LookupLanguage(const nsACString &aLanguage, nsresult *aError) MOZ_OVERRIDE;

  virtual already_AddRefed<nsIAtom>
    LookupCharSet(const nsACString& aCharSet) MOZ_OVERRIDE;

  virtual nsIAtom* GetLocaleLanguage(nsresult *aError) MOZ_OVERRIDE;

  virtual nsIAtom* GetLanguageGroup(nsIAtom *aLanguage,
                                                nsresult *aError) MOZ_OVERRIDE;

  nsLanguageAtomService();

private:
  ~nsLanguageAtomService() { }

protected:
  nsresult InitLangGroupTable();

  nsInterfaceHashtable<nsISupportsHashKey, nsIAtom> mLangToGroup;
  nsCOMPtr<nsIStringBundle> mLangGroups;
  nsCOMPtr<nsIAtom> mLocaleLanguage;
};
back to top