diff options
author | Tom Sepez <tsepez@chromium.org> | 2017-04-25 14:17:33 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-04-25 21:40:50 +0000 |
commit | cf89faf5da79e186ad354b320ea3e562a2956c37 (patch) | |
tree | 6fce0cefbc89c7568b206d3f9105b0a35a0611bd /core/fxge/cfx_gemodule.h | |
parent | 87d1c1fc1dc4455cb3695ed2df1a5fdf31e870b1 (diff) | |
download | pdfium-cf89faf5da79e186ad354b320ea3e562a2956c37.tar.xz |
Use unique_ptr for CFX_GEModule::m_pFontCache.
Change-Id: I656e8028001fadd7869a08593f10b0b8e25fe01c
Reviewed-on: https://pdfium-review.googlesource.com/4497
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Reviewed-by: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'core/fxge/cfx_gemodule.h')
-rw-r--r-- | core/fxge/cfx_gemodule.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxge/cfx_gemodule.h b/core/fxge/cfx_gemodule.h index 587ec89e59..4dfa413437 100644 --- a/core/fxge/cfx_gemodule.h +++ b/core/fxge/cfx_gemodule.h @@ -40,7 +40,7 @@ class CFX_GEModule { void DestroyPlatform(); uint8_t m_GammaValue[256]; - CFX_FontCache* m_pFontCache; + std::unique_ptr<CFX_FontCache> m_pFontCache; std::unique_ptr<CFX_FontMgr> m_pFontMgr; CCodec_ModuleMgr* m_pCodecModule; void* m_pPlatformData; |