diff options
author | Lei Zhang <thestig@chromium.org> | 2018-03-05 14:46:57 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-03-05 14:46:57 +0000 |
commit | b05836511dfab9483438fc8dcbab2f4ae6dcc1b1 (patch) | |
tree | 3b66bc8e99f995e4b1faf9a01d7a32833dd6a0cd /core/fpdfapi/render/cpdf_imagecacheentry.cpp | |
parent | e9b55327048158958d75ab3577a002084d3aed1b (diff) | |
download | pdfium-b05836511dfab9483438fc8dcbab2f4ae6dcc1b1.tar.xz |
Change return types for some rendering Start/Continue methods.
Either return a bool or a CPDF_DIBSource::LoadState. Explain what the
bool return value means.
Change-Id: I6346d0cd61d5faee5290df181cfff3b9e4d5d84e
Reviewed-on: https://pdfium-review.googlesource.com/27851
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fpdfapi/render/cpdf_imagecacheentry.cpp')
-rw-r--r-- | core/fpdfapi/render/cpdf_imagecacheentry.cpp | 42 |
1 files changed, 20 insertions, 22 deletions
diff --git a/core/fpdfapi/render/cpdf_imagecacheentry.cpp b/core/fpdfapi/render/cpdf_imagecacheentry.cpp index f69bfdae68..f4be2af12c 100644 --- a/core/fpdfapi/render/cpdf_imagecacheentry.cpp +++ b/core/fpdfapi/render/cpdf_imagecacheentry.cpp @@ -52,7 +52,7 @@ RetainPtr<CFX_DIBSource> CPDF_ImageCacheEntry::DetachMask() { return std::move(m_pCurMask); } -int CPDF_ImageCacheEntry::StartGetCachedBitmap( +CPDF_DIBSource::LoadState CPDF_ImageCacheEntry::StartGetCachedBitmap( CPDF_Dictionary* pFormResources, CPDF_Dictionary* pPageResources, bool bStdCS, @@ -64,7 +64,7 @@ int CPDF_ImageCacheEntry::StartGetCachedBitmap( if (m_pCachedBitmap) { m_pCurBitmap = m_pCachedBitmap; m_pCurMask = m_pCachedMask; - return 1; + return CPDF_DIBSource::LoadState::kSuccess; } m_pCurBitmap = pdfium::MakeRetain<CPDF_DIBSource>(); @@ -72,14 +72,26 @@ int CPDF_ImageCacheEntry::StartGetCachedBitmap( m_pDocument.Get(), m_pImage->GetStream(), true, pFormResources, pPageResources, bStdCS, GroupFamily, bLoadMask); if (ret == 2) - return ret; + return CPDF_DIBSource::LoadState::kContinue; - if (!ret) { + if (ret == 1) + ContinueGetCachedBitmap(pRenderStatus); + else m_pCurBitmap.Reset(); - return 0; - } - ContinueGetCachedBitmap(pRenderStatus); - return 0; + return CPDF_DIBSource::LoadState::kFail; +} + +bool CPDF_ImageCacheEntry::Continue(IFX_PauseIndicator* pPause, + CPDF_RenderStatus* pRenderStatus) { + int ret = m_pCurBitmap.As<CPDF_DIBSource>()->ContinueLoadDIBSource(pPause); + if (ret == 2) + return true; + + if (ret == 1) + ContinueGetCachedBitmap(pRenderStatus); + else + m_pCurBitmap.Reset(); + return false; } void CPDF_ImageCacheEntry::ContinueGetCachedBitmap( @@ -105,20 +117,6 @@ void CPDF_ImageCacheEntry::ContinueGetCachedBitmap( CalcSize(); } -int CPDF_ImageCacheEntry::Continue(IFX_PauseIndicator* pPause, - CPDF_RenderStatus* pRenderStatus) { - int ret = m_pCurBitmap.As<CPDF_DIBSource>()->ContinueLoadDIBSource(pPause); - if (!ret) { - m_pCurBitmap.Reset(); - return 0; - } - if (ret == 2) - return ret; - - ContinueGetCachedBitmap(pRenderStatus); - return 0; -} - void CPDF_ImageCacheEntry::CalcSize() { m_dwCacheSize = FPDF_ImageCache_EstimateImageSize(m_pCachedBitmap) + FPDF_ImageCache_EstimateImageSize(m_pCachedMask); |