diff options
author | Lei Zhang <thestig@chromium.org> | 2018-05-25 21:47:39 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-25 21:47:39 +0000 |
commit | 1f17bd73afa6b1b79ec4a2f81c995b43d15a9814 (patch) | |
tree | 1e19c89fc5b56a90c0a85d5a1d05f126f54dd9ce /core/fpdfapi/parser/cpdf_document.cpp | |
parent | fa4d93a08d5cd4f349c480b194a3e795273b27ed (diff) | |
download | pdfium-1f17bd73afa6b1b79ec4a2f81c995b43d15a9814.tar.xz |
Mark more CPDF_Objects as const in font code.
Change-Id: Id37333ba61ad0d395055acffd75d4d8be5eb2b3e
Reviewed-on: https://pdfium-review.googlesource.com/32911
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: dsinclair <dsinclair@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 982539cd72..5264d4e795 100644 --- a/core/fpdfapi/parser/cpdf_document.cpp +++ b/core/fpdfapi/parser/cpdf_document.cpp @@ -475,7 +475,8 @@ CPDF_Font* CPDF_Document::LoadFont(CPDF_Dictionary* pFontDict) { return m_pDocPage->GetFont(pFontDict); } -RetainPtr<CPDF_StreamAcc> CPDF_Document::LoadFontFile(CPDF_Stream* pStream) { +RetainPtr<CPDF_StreamAcc> CPDF_Document::LoadFontFile( + const CPDF_Stream* pStream) { return m_pDocPage->GetFontFileStreamAcc(pStream); } |