diff options
author | Lei Zhang <thestig@chromium.org> | 2018-05-25 21:17:49 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-25 21:17:49 +0000 |
commit | 0d86f765b8361b7f9f3a5fcc659de2f52c806bd0 (patch) | |
tree | 5f59c428d1bed3269292625d7e26ab4462510b85 /core/fpdfapi/render/cpdf_dibsource.h | |
parent | 2d3a78547ae2a0c084dc312ca4b3e03ff3427a9f (diff) | |
download | pdfium-0d86f765b8361b7f9f3a5fcc659de2f52c806bd0.tar.xz |
Add proper const/non-const versions of CPDF_Dictionary::GetStreamFor().chromium/3441
BUG=pdfium:234
Change-Id: Ia3e758bbe5c445c3856f5215e900e02a16b4d7d7
Reviewed-on: https://pdfium-review.googlesource.com/32910
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fpdfapi/render/cpdf_dibsource.h')
-rw-r--r-- | core/fpdfapi/render/cpdf_dibsource.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fpdfapi/render/cpdf_dibsource.h b/core/fpdfapi/render/cpdf_dibsource.h index 50d9c6ef9c..fc390c2f6f 100644 --- a/core/fpdfapi/render/cpdf_dibsource.h +++ b/core/fpdfapi/render/cpdf_dibsource.h @@ -156,7 +156,7 @@ class CPDF_DIBSource : public CFX_DIBSource { // Must come after |m_pCachedBitmap|. std::unique_ptr<CCodec_Jbig2Context> m_pJbig2Context; - UnownedPtr<CPDF_Stream> m_pMaskStream; + UnownedPtr<const CPDF_Stream> m_pMaskStream; LoadState m_Status = LoadState::kFail; }; |