diff options
author | Lei Zhang <thestig@chromium.org> | 2017-11-06 15:21:30 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-06 15:21:30 +0000 |
commit | 52008e9c520e8b1a7e2a9d76578ac2b27fe3e06a (patch) | |
tree | f42e80e0a7aca57dc75cd9e6c0edccb6b9c0ca5e /core/fpdfapi/page/cpdf_streamcontentparser.h | |
parent | b1a3044cdcd99ab4c88927e8b840c0c712ae54e3 (diff) | |
download | pdfium-52008e9c520e8b1a7e2a9d76578ac2b27fe3e06a.tar.xz |
Mark some CPDF_StreamContentParser members as const.
Change-Id: I6c4ee5400307c8321f2558287f4d7571c373fcaa
Reviewed-on: https://pdfium-review.googlesource.com/17795
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fpdfapi/page/cpdf_streamcontentparser.h')
-rw-r--r-- | core/fpdfapi/page/cpdf_streamcontentparser.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/fpdfapi/page/cpdf_streamcontentparser.h b/core/fpdfapi/page/cpdf_streamcontentparser.h index e905c937b3..de4a92fc99 100644 --- a/core/fpdfapi/page/cpdf_streamcontentparser.h +++ b/core/fpdfapi/page/cpdf_streamcontentparser.h @@ -194,11 +194,11 @@ class CPDF_StreamContentParser { void Handle_Invalid(); UnownedPtr<CPDF_Document> const m_pDocument; - UnownedPtr<CPDF_Dictionary> m_pPageResources; - UnownedPtr<CPDF_Dictionary> m_pParentResources; + UnownedPtr<CPDF_Dictionary> const m_pPageResources; + UnownedPtr<CPDF_Dictionary> const m_pParentResources; UnownedPtr<CPDF_Dictionary> m_pResources; - UnownedPtr<CPDF_PageObjectHolder> m_pObjectHolder; - UnownedPtr<std::set<const uint8_t*>> m_ParsedSet; + UnownedPtr<CPDF_PageObjectHolder> const m_pObjectHolder; + UnownedPtr<std::set<const uint8_t*>> const m_ParsedSet; CFX_Matrix m_mtContentToUser; const CFX_FloatRect m_BBox; ContentParam m_ParamBuf[kParamBufSize]; |