diff options
author | npm <npm@chromium.org> | 2016-07-27 13:54:25 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-07-27 13:54:25 -0700 |
commit | f73893a6110f2d4960b372fb4fe38e4fd629ce8f (patch) | |
tree | e90128b1eb13a8d5c623fb91b30b07a5cf58eb86 /core/fxge/win32 | |
parent | 461eeafe191068ac8c32f2717907fc6a22a667d2 (diff) | |
download | pdfium-f73893a6110f2d4960b372fb4fe38e4fd629ce8f.tar.xz |
Splitting fx_ge_fontmap.cpp
Move CFX_FolderFontInfo, CFX_FontMgr, and CFX_FontMapper into their own
classes. There are namespaces in each of the new files, having methods
from the original namespace in fx_ge_fontmap, according to what each
class needs.
Review-Url: https://codereview.chromium.org/2185533006
Diffstat (limited to 'core/fxge/win32')
-rw-r--r-- | core/fxge/win32/fx_win32_device.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/fxge/win32/fx_win32_device.cpp b/core/fxge/win32/fx_win32_device.cpp index 78abd5da1d..8a8be62f7b 100644 --- a/core/fxge/win32/fx_win32_device.cpp +++ b/core/fxge/win32/fx_win32_device.cpp @@ -21,7 +21,10 @@ #endif #include "core/fxge/dib/dib_int.h" +#include "core/fxge/ge/cfx_folderfontinfo.h" #include "core/fxge/ge/fx_text_int.h" +#include "core/fxge/include/cfx_fontmapper.h" +#include "core/fxge/include/ifx_systemfontinfo.h" #include "core/fxge/include/fx_font.h" #include "core/fxge/include/fx_freetype.h" #include "core/fxge/include/fx_ge_win32.h" |