diff options
author | tsepez <tsepez@chromium.org> | 2016-12-02 10:53:30 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-12-02 10:53:30 -0800 |
commit | 0527ec571a8842b84f5161dc67f8da439e65eb12 (patch) | |
tree | d645df1008a5dcd6ea3224080cfc6f7779706c68 /xfa/fgas/font/cfgas_gefont.cpp | |
parent | 8b6a0a540563c6308fa03df34c90257e0bb65598 (diff) | |
download | pdfium-0527ec571a8842b84f5161dc67f8da439e65eb12.tar.xz |
Rename IFX_Stream to IFGAS_Stream.
It's a separate hierarchy unrelated to the IFX_*Stream classes.
Also rename CFX_Stream to CFGAS_Stream, and so forth.
Review-Url: https://codereview.chromium.org/2535723010
Diffstat (limited to 'xfa/fgas/font/cfgas_gefont.cpp')
-rw-r--r-- | xfa/fgas/font/cfgas_gefont.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xfa/fgas/font/cfgas_gefont.cpp b/xfa/fgas/font/cfgas_gefont.cpp index c1dfa2b5b9..1d4624fb0d 100644 --- a/xfa/fgas/font/cfgas_gefont.cpp +++ b/xfa/fgas/font/cfgas_gefont.cpp @@ -72,7 +72,7 @@ CFGAS_GEFont* CFGAS_GEFont::LoadFont(const uint8_t* pBuffer, } // static -CFGAS_GEFont* CFGAS_GEFont::LoadFont(IFX_Stream* pFontStream, +CFGAS_GEFont* CFGAS_GEFont::LoadFont(IFGAS_Stream* pFontStream, CFGAS_FontMgr* pFontMgr, bool bSaveStream) { CFGAS_GEFont* pFont = new CFGAS_GEFont(pFontMgr); @@ -203,7 +203,8 @@ bool CFGAS_GEFont::LoadFontInternal(const uint8_t* pBuffer, int32_t length) { return InitFont(); } -bool CFGAS_GEFont::LoadFontInternal(IFX_Stream* pFontStream, bool bSaveStream) { +bool CFGAS_GEFont::LoadFontInternal(IFGAS_Stream* pFontStream, + bool bSaveStream) { if (m_pFont || m_pFileRead || !pFontStream || pFontStream->GetLength() < 1) return false; if (bSaveStream) |