diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-03-06 18:56:33 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-03-06 18:56:33 +0000 |
commit | f8af565a78ee1910b8c98a5bdfb9ab6b88442317 (patch) | |
tree | 89f09c7bb361b255c09cc8627317750a19bf4949 /core/fxge/fx_ge_fontmap.cpp | |
parent | a32145f1f16b7b02110bf359208f587d7d486551 (diff) | |
download | pdfium-f8af565a78ee1910b8c98a5bdfb9ab6b88442317.tar.xz |
Rename IFX classes in core/fxge to Ifacechromium/3364
This CL renames IFX classes in core/fxge to Iface.
Change-Id: I137167ddd4ff1563d8002d9501222c27183408cc
Reviewed-on: https://pdfium-review.googlesource.com/27990
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fxge/fx_ge_fontmap.cpp')
-rw-r--r-- | core/fxge/fx_ge_fontmap.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/core/fxge/fx_ge_fontmap.cpp b/core/fxge/fx_ge_fontmap.cpp index 6e3d8abea3..58b00f5ec9 100644 --- a/core/fxge/fx_ge_fontmap.cpp +++ b/core/fxge/fx_ge_fontmap.cpp @@ -7,7 +7,7 @@ #include <memory> #include "core/fxge/cfx_fontmapper.h" -#include "core/fxge/ifx_systemfontinfo.h" +#include "core/fxge/systemfontinfo_iface.h" static ByteString GetStringFromTable(const uint8_t* string_ptr, uint32_t string_ptr_length, @@ -52,15 +52,15 @@ ByteString GetNameFromTT(const uint8_t* name_table, return ByteString(); } #ifdef PDF_ENABLE_XFA -void* IFX_SystemFontInfo::MapFontByUnicode(uint32_t dwUnicode, - int weight, - bool bItalic, - int pitch_family) { +void* SystemFontInfoIface::MapFontByUnicode(uint32_t dwUnicode, + int weight, + bool bItalic, + int pitch_family) { return nullptr; } #endif // PDF_ENABLE_XFA -int IFX_SystemFontInfo::GetFaceIndex(void* hFont) { +int SystemFontInfoIface::GetFaceIndex(void* hFont) { return 0; } @@ -73,7 +73,7 @@ void _FTStreamClose(FXFT_Stream stream); }; #if _FX_OS_ == _FX_OS_ANDROID_ -std::unique_ptr<IFX_SystemFontInfo> IFX_SystemFontInfo::CreateDefault( +std::unique_ptr<SystemFontInfoIface> SystemFontInfoIface::CreateDefault( const char** pUnused) { return nullptr; } |