diff options
author | Lei Zhang <thestig@chromium.org> | 2018-07-10 18:13:45 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-07-10 18:13:45 +0000 |
commit | 416cbeab1d93b1261dfb4584e0c8e47d9cd4720f (patch) | |
tree | d337390fadee51ee8949542f68feade0e2f64cec /core/fpdfapi/page/cpdf_streamcontentparser.h | |
parent | b5cabcb3b24f835cb09c7086b380be2b26cf46be (diff) | |
download | pdfium-416cbeab1d93b1261dfb4584e0c8e47d9cd4720f.tar.xz |
Make CPDF_StreamContentParser::m_pResources a const pointer.
Move the code to select what it points at to a separate function, so the
CPDF_StreamContentParser constructor only sets it once.
Change-Id: I60013e77c8f37246282f94227a4aeb17270ee23c
Reviewed-on: https://pdfium-review.googlesource.com/37450
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'core/fpdfapi/page/cpdf_streamcontentparser.h')
-rw-r--r-- | core/fpdfapi/page/cpdf_streamcontentparser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fpdfapi/page/cpdf_streamcontentparser.h b/core/fpdfapi/page/cpdf_streamcontentparser.h index 238999b846..aac66e883b 100644 --- a/core/fpdfapi/page/cpdf_streamcontentparser.h +++ b/core/fpdfapi/page/cpdf_streamcontentparser.h @@ -211,7 +211,7 @@ class CPDF_StreamContentParser { UnownedPtr<CPDF_Document> const m_pDocument; UnownedPtr<CPDF_Dictionary> const m_pPageResources; UnownedPtr<CPDF_Dictionary> const m_pParentResources; - UnownedPtr<CPDF_Dictionary> m_pResources; + UnownedPtr<CPDF_Dictionary> const m_pResources; UnownedPtr<CPDF_PageObjectHolder> const m_pObjectHolder; UnownedPtr<std::set<const uint8_t*>> const m_ParsedSet; CFX_Matrix m_mtContentToUser; |