diff options
author | Tom Sepez <tsepez@chromium.org> | 2017-05-23 14:31:00 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-05-23 21:48:51 +0000 |
commit | 258909cda89cb478ed44d56ca3e88d86f9dd4733 (patch) | |
tree | 59bde9f676b2faca74a64f130099663e14fd4b90 /core/fpdfapi/render/cpdf_imagecacheentry.h | |
parent | abc83aa862050642a90ed109074a9cf1018fee9b (diff) | |
download | pdfium-258909cda89cb478ed44d56ca3e88d86f9dd4733.tar.xz |
Make CPDF_ImageCacheEntry retain CPDF_Image
CPDF_PageRenderCache::m_ImageCache is a map from streams to
an image cache entry containing a clump of data associated
with the stream. Oddly, the clump includes the stream key (which
we already have in order to get to the clump), but worse doesn't
ensure the existence of the CPDF_Image object which (maybe) owns
the stream key in question.
So replace the stream with a retained ptr to the image.
Also renamed an unrelated member to avoid confusion with the
CPDF_Object in play.
Bug: 724460
Change-Id: Id13d2c246918d4ff78c12b5bdb927f99c3f5e4e1
Reviewed-on: https://pdfium-review.googlesource.com/5771
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Reviewed-by: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'core/fpdfapi/render/cpdf_imagecacheentry.h')
-rw-r--r-- | core/fpdfapi/render/cpdf_imagecacheentry.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/core/fpdfapi/render/cpdf_imagecacheentry.h b/core/fpdfapi/render/cpdf_imagecacheentry.h index 0909f80da9..fac2c1ff56 100644 --- a/core/fpdfapi/render/cpdf_imagecacheentry.h +++ b/core/fpdfapi/render/cpdf_imagecacheentry.h @@ -13,24 +13,24 @@ #include "core/fxcrt/cfx_unowned_ptr.h" #include "core/fxcrt/fx_system.h" -class CFX_DIBitmap; class CFX_DIBSource; +class CFX_DIBitmap; class CPDF_Dictionary; class CPDF_Document; +class CPDF_Image; class CPDF_RenderStatus; -class CPDF_Stream; class IFX_Pause; class CPDF_ImageCacheEntry { public: - CPDF_ImageCacheEntry(CPDF_Document* pDoc, CPDF_Stream* pStream); + CPDF_ImageCacheEntry(CPDF_Document* pDoc, + const CFX_RetainPtr<CPDF_Image>& pImage); ~CPDF_ImageCacheEntry(); void Reset(const CFX_RetainPtr<CFX_DIBitmap>& pBitmap); uint32_t EstimateSize() const { return m_dwCacheSize; } uint32_t GetTimeCount() const { return m_dwTimeCount; } - CPDF_Stream* GetStream() const { return m_pStream.Get(); } - + CPDF_Image* GetImage() const { return m_pImage.Get(); } int StartGetCachedBitmap(CPDF_Dictionary* pFormResources, CPDF_Dictionary* pPageResources, bool bStdCS, @@ -49,7 +49,7 @@ class CPDF_ImageCacheEntry { void CalcSize(); CFX_UnownedPtr<CPDF_Document> const m_pDocument; - CFX_UnownedPtr<CPDF_Stream> const m_pStream; + CFX_RetainPtr<CPDF_Image> const m_pImage; CFX_RetainPtr<CFX_DIBSource> m_pCurBitmap; CFX_RetainPtr<CFX_DIBSource> m_pCurMask; CFX_RetainPtr<CFX_DIBSource> m_pCachedBitmap; |