diff options
author | tsepez <tsepez@chromium.org> | 2016-06-03 16:02:17 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-03 16:02:17 -0700 |
commit | 16e587e9c34d713bb15c853e11891f0cf4d5f140 (patch) | |
tree | fd2460fb421d784a721615ea61c6082a7628ccd6 /xfa/fxfa/app/xfa_ffapp.cpp | |
parent | 8d4e0d47f4cd0325be84ebf310fd8de989761939 (diff) | |
download | pdfium-16e587e9c34d713bb15c853e11891f0cf4d5f140.tar.xz |
Rename IFX_FontMgr to IFGAS_FontMgr
Avoid confusion with CFX_FontMgr, which does not inherit
from IFX_FontMgr, and lives in a different layer of code.
Do the same CFX_ -> CFGAS_ transformation for the concrete
classes that implement IFGAS_FontMgr.
Review-Url: https://codereview.chromium.org/2039463003
Diffstat (limited to 'xfa/fxfa/app/xfa_ffapp.cpp')
-rw-r--r-- | xfa/fxfa/app/xfa_ffapp.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fxfa/app/xfa_ffapp.cpp b/xfa/fxfa/app/xfa_ffapp.cpp index a26e2c99cf..f2a6ad5e0d 100644 --- a/xfa/fxfa/app/xfa_ffapp.cpp +++ b/xfa/fxfa/app/xfa_ffapp.cpp @@ -142,13 +142,13 @@ CXFA_FontMgr* CXFA_FFApp::GetXFAFontMgr() { return m_pFontMgr; } -IFX_FontMgr* CXFA_FFApp::GetFDEFontMgr() { +IFGAS_FontMgr* CXFA_FFApp::GetFDEFontMgr() { if (!m_pFDEFontMgr) { #if _FXM_PLATFORM_ == _FXM_PLATFORM_WINDOWS_ - m_pFDEFontMgr = IFX_FontMgr::Create(FX_GetDefFontEnumerator()); + m_pFDEFontMgr = IFGAS_FontMgr::Create(FX_GetDefFontEnumerator()); #else m_pFontSource = new CFX_FontSourceEnum_File; - m_pFDEFontMgr = IFX_FontMgr::Create(m_pFontSource); + m_pFDEFontMgr = IFGAS_FontMgr::Create(m_pFontSource); #endif } return m_pFDEFontMgr; |