diff options
author | Lei Zhang <thestig@chromium.org> | 2018-03-21 18:39:06 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-03-21 18:39:06 +0000 |
commit | 36bbc24e2d7e5082047ad5b783c69518accafe42 (patch) | |
tree | 2978ab807455da2603ad9e7adc8f11f53d59ee00 /core/fpdfapi/page/cpdf_contentmark.h | |
parent | a589b2c7b253179b71a7482ce2341009bb7b6b56 (diff) | |
download | pdfium-36bbc24e2d7e5082047ad5b783c69518accafe42.tar.xz |
Use more const pointers in CPDF_ContentMarkItem.
Transitively mark the same pointers as const in callers.
Change-Id: I1f9669b35c6d7f4b1a11c25163480bc687fbc7f8
Reviewed-on: https://pdfium-review.googlesource.com/28870
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'core/fpdfapi/page/cpdf_contentmark.h')
-rw-r--r-- | core/fpdfapi/page/cpdf_contentmark.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/fpdfapi/page/cpdf_contentmark.h b/core/fpdfapi/page/cpdf_contentmark.h index 78a948697e..1d8b9e2515 100644 --- a/core/fpdfapi/page/cpdf_contentmark.h +++ b/core/fpdfapi/page/cpdf_contentmark.h @@ -25,7 +25,9 @@ class CPDF_ContentMark { size_t CountItems() const; const CPDF_ContentMarkItem& GetItem(size_t i) const; - void AddMark(const ByteString& name, CPDF_Dictionary* pDict, bool bDirect); + void AddMark(const ByteString& name, + const CPDF_Dictionary* pDict, + bool bDirect); void DeleteLastMark(); bool HasRef() const { return !!m_Ref; } @@ -42,7 +44,7 @@ class CPDF_ContentMark { int GetMarkedContentID() const; void AddMark(const ByteString& name, - CPDF_Dictionary* pDict, + const CPDF_Dictionary* pDict, bool bDictNeedClone); void DeleteLastMark(); |