diff options
author | dsinclair <dsinclair@chromium.org> | 2016-05-19 10:51:56 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-19 10:51:56 -0700 |
commit | bc9164115e8aeefcc06f5bf08684a4733b25e085 (patch) | |
tree | 5cba0c100b9a89809923a42e6668d71f6d0a3ff2 /xfa/fgas/localization/fgas_localemgr.h | |
parent | d89fcb8f68162eef6111ce35133c80b2f7db0414 (diff) | |
download | pdfium-bc9164115e8aeefcc06f5bf08684a4733b25e085.tar.xz |
Cleanup unused fgas/ code.
Purely code removal.
Review-Url: https://codereview.chromium.org/1991143003
Diffstat (limited to 'xfa/fgas/localization/fgas_localemgr.h')
-rw-r--r-- | xfa/fgas/localization/fgas_localemgr.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/xfa/fgas/localization/fgas_localemgr.h b/xfa/fgas/localization/fgas_localemgr.h deleted file mode 100644 index d0ba90c9a8..0000000000 --- a/xfa/fgas/localization/fgas_localemgr.h +++ /dev/null @@ -1,30 +0,0 @@ -// Copyright 2014 PDFium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com - -#ifndef XFA_FGAS_LOCALIZATION_FGAS_LOCALEMGR_H_ -#define XFA_FGAS_LOCALIZATION_FGAS_LOCALEMGR_H_ - -#include "xfa/fgas/localization/fgas_locale.h" - -class CFX_LocaleMgr : public IFX_LocaleMgr { - public: - CFX_LocaleMgr(uint16_t wDefLCID); - - void Release() override { delete this; } - uint16_t GetDefLocaleID() override; - IFX_Locale* GetDefLocale() override; - IFX_Locale* GetLocale(uint16_t lcid) override; - IFX_Locale* GetLocaleByName(const CFX_WideString& wsLocaleName) override; - - CFX_MapPtrToPtr m_lcid2xml; - - protected: - ~CFX_LocaleMgr() override; - CFX_MapPtrToPtr m_lcid2locale; - uint16_t m_wDefLCID; -}; - -#endif // XFA_FGAS_LOCALIZATION_FGAS_LOCALEMGR_H_ |