Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Unified Diff: core/fpdfapi/parser/cpdf_name.cpp

Issue 2484033002: Return unique_ptr from CPDF_Object::Clone(). (Closed)
Patch Set: std::move() it Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/fpdfapi/parser/cpdf_name.h ('k') | core/fpdfapi/parser/cpdf_null.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/fpdfapi/parser/cpdf_name.cpp
diff --git a/core/fpdfapi/parser/cpdf_name.cpp b/core/fpdfapi/parser/cpdf_name.cpp
index 5cc8479c3bd32f939dc48268fb9d69e820338f99..bb464251177eeaaa12b9cc594b43d69c7cade01e 100644
--- a/core/fpdfapi/parser/cpdf_name.cpp
+++ b/core/fpdfapi/parser/cpdf_name.cpp
@@ -7,6 +7,7 @@
#include "core/fpdfapi/parser/cpdf_name.h"
#include "core/fpdfapi/parser/fpdf_parser_decode.h"
+#include "third_party/base/ptr_util.h"
CPDF_Name::CPDF_Name(const CFX_ByteString& str) : m_Name(str) {}
@@ -16,8 +17,8 @@ CPDF_Object::Type CPDF_Name::GetType() const {
return NAME;
}
-CPDF_Object* CPDF_Name::Clone() const {
- return new CPDF_Name(m_Name);
+std::unique_ptr<CPDF_Object> CPDF_Name::Clone() const {
+ return pdfium::MakeUnique<CPDF_Name>(m_Name);
}
CFX_ByteString CPDF_Name::GetString() const {
« no previous file with comments | « core/fpdfapi/parser/cpdf_name.h ('k') | core/fpdfapi/parser/cpdf_null.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698