summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrique Nakashima <hnakashima@chromium.org>2018-01-25 23:23:13 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-01-25 23:23:13 +0000
commitb35b7254e7ccf9f19092c0615fb6743d0a74a134 (patch)
tree07eb2fcb3c4f632683381c4a6ea06fe3f86bb390
parentf036f12bdf6c6c71fc57f10efa048f4c4732c355 (diff)
downloadpdfium-b35b7254e7ccf9f19092c0615fb6743d0a74a134.tar.xz
Make private some methods in CPDF_DIBSource.
Change-Id: Ieb6a4dab00a784dd8d085100e07c935094d72b08 Reviewed-on: https://pdfium-review.googlesource.com/24011 Reviewed-by: dsinclair <dsinclair@chromium.org> Reviewed-by: Henrique Nakashima <hnakashima@chromium.org> Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
-rw-r--r--core/fpdfapi/render/cpdf_dibsource.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/fpdfapi/render/cpdf_dibsource.h b/core/fpdfapi/render/cpdf_dibsource.h
index d3f65156c3..bb4fdbad90 100644
--- a/core/fpdfapi/render/cpdf_dibsource.h
+++ b/core/fpdfapi/render/cpdf_dibsource.h
@@ -72,15 +72,15 @@ class CPDF_DIBSource : public CFX_DIBSource {
uint32_t GroupFamily = 0,
bool bLoadMask = false);
int ContinueLoadDIBSource(IFX_PauseIndicator* pPause);
- int StartLoadMask();
- int StartLoadMaskDIB();
- int ContinueLoadMaskDIB(IFX_PauseIndicator* pPause);
- bool ContinueToLoadMask();
RetainPtr<CPDF_DIBSource> DetachMask();
private:
CPDF_DIBSource();
+ int StartLoadMask();
+ int StartLoadMaskDIB();
+ bool ContinueToLoadMask();
+ int ContinueLoadMaskDIB(IFX_PauseIndicator* pPause);
bool LoadColorInfo(const CPDF_Dictionary* pFormResources,
const CPDF_Dictionary* pPageResources);
DIB_COMP_DATA* GetDecodeAndMaskArray(bool* bDefaultDecode, bool* bColorKey);