diff options
author | Lei Zhang <thestig@chromium.org> | 2018-05-09 23:15:12 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-09 23:15:12 +0000 |
commit | 3774c7a452886b9c8beeb5fa1b54a34611551180 (patch) | |
tree | aba96eeb7d9fc266ecbe7bc460dcaac869514ecf /core/fpdfapi/parser/cpdf_document.cpp | |
parent | 7e28208d26764438bef62e051d2e1fed13e1e0ec (diff) | |
download | pdfium-3774c7a452886b9c8beeb5fa1b54a34611551180.tar.xz |
Add proper const/non-const versions of CPDF_Array methods.
Instead of having const methods that return non-const pointers.
BUG=pdfium:234
Change-Id: I61495543f67229500dfcf2248e93468e9a9b23cf
Reviewed-on: https://pdfium-review.googlesource.com/32183
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'core/fpdfapi/parser/cpdf_document.cpp')
-rw-r--r-- | core/fpdfapi/parser/cpdf_document.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/fpdfapi/parser/cpdf_document.cpp b/core/fpdfapi/parser/cpdf_document.cpp index fea0bddb33..982539cd72 100644 --- a/core/fpdfapi/parser/cpdf_document.cpp +++ b/core/fpdfapi/parser/cpdf_document.cpp @@ -491,7 +491,8 @@ CPDF_Pattern* CPDF_Document::LoadPattern(CPDF_Object* pPatternObj, return m_pDocPage->GetPattern(pPatternObj, bShading, matrix); } -RetainPtr<CPDF_IccProfile> CPDF_Document::LoadIccProfile(CPDF_Stream* pStream) { +RetainPtr<CPDF_IccProfile> CPDF_Document::LoadIccProfile( + const CPDF_Stream* pStream) { return m_pDocPage->GetIccProfile(pStream); } |