diff options
author | Lei Zhang <thestig@chromium.org> | 2018-04-12 15:37:39 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-04-12 15:37:39 +0000 |
commit | 1c23a6d78c95ff0714cda6f642420e0502edac29 (patch) | |
tree | 82d35256f9a214cc26f03d7c5626653a2398f56b /core/fxge/cfx_font.h | |
parent | e6d4559a1b6c2eb0eb433b9db70745e3be3d8465 (diff) | |
download | pdfium-1c23a6d78c95ff0714cda6f642420e0502edac29.tar.xz |
Make CFX_Font take FX_RECT out params by pointer.
Change-Id: I6643aaf66bf3e9d53d5afab5c99a5cb7deab3661
Reviewed-on: https://pdfium-review.googlesource.com/30054
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'core/fxge/cfx_font.h')
-rw-r--r-- | core/fxge/cfx_font.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fxge/cfx_font.h b/core/fxge/cfx_font.h index c753e7e29d..1d17714b46 100644 --- a/core/fxge/cfx_font.h +++ b/core/fxge/cfx_font.h @@ -65,7 +65,7 @@ class CFX_Font { uint32_t GetGlyphWidth(uint32_t glyph_index); int GetAscent() const; int GetDescent() const; - bool GetGlyphBBox(uint32_t glyph_index, FX_RECT& bbox); + bool GetGlyphBBox(uint32_t glyph_index, FX_RECT* pBBox); bool IsItalic() const; bool IsBold() const; bool IsFixedWidth() const; @@ -74,7 +74,7 @@ class CFX_Font { ByteString GetFamilyName() const; ByteString GetFaceName() const; bool IsTTFont() const; - bool GetBBox(FX_RECT& bbox); + bool GetBBox(FX_RECT* pBBox); bool IsEmbedded() const { return m_bEmbedded; } uint8_t* GetSubData() const { return m_pGsubData.get(); } void SetSubData(uint8_t* data) { m_pGsubData.reset(data); } |