From 14e77443e92ce3fdf1cebe85f8f5c8fe705a1558 Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Fri, 12 Jan 2018 21:21:51 +0000 Subject: Move some RetainPtr getters/setters out of headers. RetainPtr operations are not trivial. Change-Id: Ic106ada69d1c023a8132a2a59db17d550fd81fa0 Reviewed-on: https://pdfium-review.googlesource.com/22911 Reviewed-by: Tom Sepez Commit-Queue: Lei Zhang --- core/fpdfapi/font/cpdf_type3char.cpp | 9 +++++++++ core/fpdfapi/font/cpdf_type3char.h | 4 ++-- core/fxge/cfx_font.cpp | 4 ++++ core/fxge/cfx_font.h | 5 +---- core/fxge/cfx_renderdevice.cpp | 8 ++++++++ core/fxge/cfx_renderdevice.h | 6 ++---- 6 files changed, 26 insertions(+), 10 deletions(-) diff --git a/core/fpdfapi/font/cpdf_type3char.cpp b/core/fpdfapi/font/cpdf_type3char.cpp index f1448ab751..8a89582b00 100644 --- a/core/fpdfapi/font/cpdf_type3char.cpp +++ b/core/fpdfapi/font/cpdf_type3char.cpp @@ -12,6 +12,7 @@ #include "core/fpdfapi/page/cpdf_image.h" #include "core/fpdfapi/page/cpdf_imageobject.h" #include "core/fpdfapi/page/cpdf_pageobject.h" +#include "core/fxge/dib/cfx_dibitmap.h" #include "core/fxge/fx_dib.h" namespace { @@ -93,3 +94,11 @@ void CPDF_Type3Char::Transform(const CFX_Matrix& matrix) { void CPDF_Type3Char::ResetForm() { m_pForm.reset(); } + +RetainPtr CPDF_Type3Char::GetBitmap() { + return m_pBitmap; +} + +const RetainPtr& CPDF_Type3Char::GetBitmap() const { + return m_pBitmap; +} diff --git a/core/fpdfapi/font/cpdf_type3char.h b/core/fpdfapi/font/cpdf_type3char.h index 2aec16a0eb..c9c5555cf4 100644 --- a/core/fpdfapi/font/cpdf_type3char.h +++ b/core/fpdfapi/font/cpdf_type3char.h @@ -31,8 +31,8 @@ class CPDF_Type3Char { void Transform(const CFX_Matrix& matrix); void ResetForm(); - RetainPtr GetBitmap() { return m_pBitmap; } - const RetainPtr& GetBitmap() const { return m_pBitmap; } + RetainPtr GetBitmap(); + const RetainPtr& GetBitmap() const; const CPDF_Form* form() const { return m_pForm.get(); } CPDF_Form* form() { return m_pForm.get(); } diff --git a/core/fxge/cfx_font.cpp b/core/fxge/cfx_font.cpp index bca711f0bb..6d969a345c 100644 --- a/core/fxge/cfx_font.cpp +++ b/core/fxge/cfx_font.cpp @@ -228,6 +228,10 @@ void CFX_Font::SetFace(FXFT_Face face) { ClearFaceCache(); m_Face = face; } + +void CFX_Font::SetSubstFont(std::unique_ptr subst) { + m_pSubstFont = std::move(subst); +} #endif // PDF_ENABLE_XFA CFX_Font::~CFX_Font() { diff --git a/core/fxge/cfx_font.h b/core/fxge/cfx_font.h index 13cb892c19..c8c4cf7a5f 100644 --- a/core/fxge/cfx_font.h +++ b/core/fxge/cfx_font.h @@ -8,7 +8,6 @@ #define CORE_FXGE_CFX_FONT_H_ #include -#include #include #include "core/fxcrt/bytestring.h" @@ -47,9 +46,7 @@ class CFX_Font { bool LoadFile(const RetainPtr& pFile, int nFaceIndex); void SetFace(FXFT_Face face); - void SetSubstFont(std::unique_ptr subst) { - m_pSubstFont = std::move(subst); - } + void SetSubstFont(std::unique_ptr subst); #endif // PDF_ENABLE_XFA const CFX_GlyphBitmap* LoadGlyphBitmap(uint32_t glyph_index, diff --git a/core/fxge/cfx_renderdevice.cpp b/core/fxge/cfx_renderdevice.cpp index 63bf1d9ebd..919a7a98a7 100644 --- a/core/fxge/cfx_renderdevice.cpp +++ b/core/fxge/cfx_renderdevice.cpp @@ -429,6 +429,14 @@ CFX_Matrix CFX_RenderDevice::GetCTM() const { return m_pDeviceDriver->GetCTM(); } +RetainPtr CFX_RenderDevice::GetBitmap() const { + return m_pBitmap; +} + +void CFX_RenderDevice::SetBitmap(const RetainPtr& pBitmap) { + m_pBitmap = pBitmap; +} + bool CFX_RenderDevice::CreateCompatibleBitmap( const RetainPtr& pDIB, int width, diff --git a/core/fxge/cfx_renderdevice.h b/core/fxge/cfx_renderdevice.h index 0f1cf9b6ca..5b18b2293a 100644 --- a/core/fxge/cfx_renderdevice.h +++ b/core/fxge/cfx_renderdevice.h @@ -113,10 +113,8 @@ class CFX_RenderDevice { int GetRenderCaps() const { return m_RenderCaps; } int GetDeviceCaps(int id) const; CFX_Matrix GetCTM() const; - RetainPtr GetBitmap() const { return m_pBitmap; } - void SetBitmap(const RetainPtr& pBitmap) { - m_pBitmap = pBitmap; - } + RetainPtr GetBitmap() const; + void SetBitmap(const RetainPtr& pBitmap); bool CreateCompatibleBitmap(const RetainPtr& pDIB, int width, int height) const; -- cgit v1.2.3