diff options
author | tsepez <tsepez@chromium.org> | 2016-11-22 13:02:43 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-22 13:02:43 -0800 |
commit | c675a2f4afdd7e54bc4b4638bd1ffcb2de0b7124 (patch) | |
tree | 32d24b9f0f0644d59ed2e6578e420eb1542aee70 /core/fpdfdoc | |
parent | 6136ec6347a5858a85912a805ea41126863558cd (diff) | |
download | pdfium-c675a2f4afdd7e54bc4b4638bd1ffcb2de0b7124.tar.xz |
Use more unique_ptrs in CPDF_SyntaxParser and CPDF_Annotchromium/2929
Review-Url: https://codereview.chromium.org/2526543003
Diffstat (limited to 'core/fpdfdoc')
-rw-r--r-- | core/fpdfdoc/cpdf_annot.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/core/fpdfdoc/cpdf_annot.cpp b/core/fpdfdoc/cpdf_annot.cpp index a7d2101364..70c6b8d3c4 100644 --- a/core/fpdfdoc/cpdf_annot.cpp +++ b/core/fpdfdoc/cpdf_annot.cpp @@ -6,6 +6,8 @@ #include "core/fpdfdoc/cpdf_annot.h" +#include <utility> + #include "core/fpdfapi/page/cpdf_form.h" #include "core/fpdfapi/page/cpdf_page.h" #include "core/fpdfapi/parser/cpdf_array.h" @@ -205,11 +207,13 @@ CPDF_Form* CPDF_Annot::GetAPForm(const CPDF_Page* pPage, AppearanceMode mode) { if (it != m_APMap.end()) return it->second.get(); - CPDF_Form* pNewForm = - new CPDF_Form(m_pDocument, pPage->m_pResources, pStream); + auto pNewForm = + pdfium::MakeUnique<CPDF_Form>(m_pDocument, pPage->m_pResources, pStream); pNewForm->ParseContent(nullptr, nullptr, nullptr); - m_APMap[pStream] = pdfium::WrapUnique(pNewForm); - return pNewForm; + + CPDF_Form* pResult = pNewForm.get(); + m_APMap[pStream] = std::move(pNewForm); + return pResult; } // Static. |