diff options
author | tsepez <tsepez@chromium.org> | 2016-10-13 16:36:20 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-10-13 16:36:20 -0700 |
commit | 1d023881cd53485303c0fcc0b5878e700dc470fd (patch) | |
tree | 0f41370ff729b0495f475887a3f6f38a0210aae4 /core/fpdfapi/parser/cpdf_dictionary.h | |
parent | 20f8ecc2f44332792c11cf0ac566c0114712b83c (diff) | |
download | pdfium-1d023881cd53485303c0fcc0b5878e700dc470fd.tar.xz |
Make CPDF_Object containers hold objects via unique pointers.
This tweaks the implementation while leaving the API the
same. The API change is more disruptive, so break this
part off first.
Review-Url: https://codereview.chromium.org/2385293002
Diffstat (limited to 'core/fpdfapi/parser/cpdf_dictionary.h')
-rw-r--r-- | core/fpdfapi/parser/cpdf_dictionary.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/fpdfapi/parser/cpdf_dictionary.h b/core/fpdfapi/parser/cpdf_dictionary.h index fb8200f78c..6265522997 100644 --- a/core/fpdfapi/parser/cpdf_dictionary.h +++ b/core/fpdfapi/parser/cpdf_dictionary.h @@ -21,8 +21,8 @@ class CPDF_IndirectObjectHolder; class CPDF_Dictionary : public CPDF_Object { public: - using iterator = std::map<CFX_ByteString, CPDF_Object*>::iterator; - using const_iterator = std::map<CFX_ByteString, CPDF_Object*>::const_iterator; + using iterator = std::map<CFX_ByteString, UniqueObject>::iterator; + using const_iterator = std::map<CFX_ByteString, UniqueObject>::const_iterator; CPDF_Dictionary(); explicit CPDF_Dictionary(const CFX_WeakPtr<CFX_ByteStringPool>& pPool); @@ -96,7 +96,7 @@ class CPDF_Dictionary : public CPDF_Object { std::set<const CPDF_Object*>* visited) const override; CFX_WeakPtr<CFX_ByteStringPool> m_pPool; - std::map<CFX_ByteString, CPDF_Object*> m_Map; + std::map<CFX_ByteString, UniqueObject> m_Map; }; using UniqueDictionary = |