diff options
author | tsepez <tsepez@chromium.org> | 2016-11-09 13:28:26 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-09 13:28:26 -0800 |
commit | 335cf093231c984a23cb9ea113148ea1f19621ba (patch) | |
tree | e9c7803b0ce71269beb3d423549a2d6a0ac7784a /core/fpdfapi/parser/cpdf_object.cpp | |
parent | 3ff4deea307c38462393e4f83dabe32949338168 (diff) | |
download | pdfium-335cf093231c984a23cb9ea113148ea1f19621ba.tar.xz |
Return unique_ptr from CPDF_Object::Clone().
Because that's what clone does. There are numerous
release() calls that will go away as more code is
converted.
Review-Url: https://codereview.chromium.org/2484033002
Diffstat (limited to 'core/fpdfapi/parser/cpdf_object.cpp')
-rw-r--r-- | core/fpdfapi/parser/cpdf_object.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/fpdfapi/parser/cpdf_object.cpp b/core/fpdfapi/parser/cpdf_object.cpp index e9c215ce19..acda334c9e 100644 --- a/core/fpdfapi/parser/cpdf_object.cpp +++ b/core/fpdfapi/parser/cpdf_object.cpp @@ -22,16 +22,17 @@ CPDF_Object* CPDF_Object::GetDirect() const { return const_cast<CPDF_Object*>(this); } -CPDF_Object* CPDF_Object::CloneObjectNonCyclic(bool bDirect) const { +std::unique_ptr<CPDF_Object> CPDF_Object::CloneObjectNonCyclic( + bool bDirect) const { std::set<const CPDF_Object*> visited_objs; return CloneNonCyclic(bDirect, &visited_objs); } -CPDF_Object* CPDF_Object::CloneDirectObject() const { +std::unique_ptr<CPDF_Object> CPDF_Object::CloneDirectObject() const { return CloneObjectNonCyclic(true); } -CPDF_Object* CPDF_Object::CloneNonCyclic( +std::unique_ptr<CPDF_Object> CPDF_Object::CloneNonCyclic( bool bDirect, std::set<const CPDF_Object*>* pVisited) const { return Clone(); |