diff options
author | Lei Zhang <thestig@chromium.org> | 2015-08-18 16:02:32 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-08-18 16:02:32 -0700 |
commit | a2b3ae23556fb2f1adbc008574f33bf365476af9 (patch) | |
tree | 7077643dce819ecd6ba6acedd85a03046d745e18 /core/include/fxge/fx_font.h | |
parent | e1ce94e0b045b443976c118a251400b4016f9811 (diff) | |
download | pdfium-a2b3ae23556fb2f1adbc008574f33bf365476af9.tar.xz |
Fix mac build after commit e1ce94e.chromium/2497chromium/2496chromium/2495chromium/2494chromium/2493chromium/2492chromium/2491chromium/2489chromium/2488
TBR=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1297303002 .
Diffstat (limited to 'core/include/fxge/fx_font.h')
-rw-r--r-- | core/include/fxge/fx_font.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/include/fxge/fx_font.h b/core/include/fxge/fx_font.h index 04918ea275..1423be497b 100644 --- a/core/include/fxge/fx_font.h +++ b/core/include/fxge/fx_font.h @@ -91,6 +91,10 @@ class CFX_Font { FX_BOOL IsEmbedded() const { return m_bEmbedded; } uint8_t* GetSubData() const { return m_pGsubData; } void SetSubData(uint8_t* data) { m_pGsubData = data; } + void* GetPlatformFont() const { return m_pPlatformFont; } + void SetPlatformFont(void* font) { m_pPlatformFont = font; } + uint8_t* GetFontData() const { return m_pFontData; } + FX_DWORD GetSize() const { return m_dwSize; } void AdjustMMParams(int glyph_index, int width, int weight); private: |