diff options
author | Lei Zhang <thestig@chromium.org> | 2018-05-25 16:24:48 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-25 16:24:48 +0000 |
commit | 710fa99b0bd26e6761c4481b4b9b6d26d2954c3e (patch) | |
tree | 0c744f3485faa3a91779286dd0f5ef9c0ac26337 /core/fpdfapi/page/cpdf_docpagedata.cpp | |
parent | cbf1550e48e300142a53f635daba3c1d8910add9 (diff) | |
download | pdfium-710fa99b0bd26e6761c4481b4b9b6d26d2954c3e.tar.xz |
Mark CPDF_Object pointers in pattern code as const.
Change-Id: Id7bf252ebe25c92d26065d1138a445ebb2f78d0b
Reviewed-on: https://pdfium-review.googlesource.com/32187
Reviewed-by: dsinclair <dsinclair@chromium.org>
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'core/fpdfapi/page/cpdf_docpagedata.cpp')
-rw-r--r-- | core/fpdfapi/page/cpdf_docpagedata.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/fpdfapi/page/cpdf_docpagedata.cpp b/core/fpdfapi/page/cpdf_docpagedata.cpp index 79e148c72a..92dca138cf 100644 --- a/core/fpdfapi/page/cpdf_docpagedata.cpp +++ b/core/fpdfapi/page/cpdf_docpagedata.cpp @@ -457,13 +457,13 @@ void CPDF_DocPageData::MaybePurgeIccProfile(const CPDF_Stream* pProfileStream) { } RetainPtr<CPDF_StreamAcc> CPDF_DocPageData::GetFontFileStreamAcc( - CPDF_Stream* pFontStream) { + const CPDF_Stream* pFontStream) { ASSERT(pFontStream); auto it = m_FontFileMap.find(pFontStream); if (it != m_FontFileMap.end()) return it->second; - CPDF_Dictionary* pFontDict = pFontStream->GetDict(); + const CPDF_Dictionary* pFontDict = pFontStream->GetDict(); int32_t org_size = pFontDict->GetIntegerFor("Length1") + pFontDict->GetIntegerFor("Length2") + pFontDict->GetIntegerFor("Length3"); @@ -495,7 +495,7 @@ CPDF_CountedColorSpace* CPDF_DocPageData::FindColorSpacePtr( } CPDF_CountedPattern* CPDF_DocPageData::FindPatternPtr( - CPDF_Object* pPatternObj) const { + const CPDF_Object* pPatternObj) const { if (!pPatternObj) return nullptr; |