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

Unified Diff: core/include/fpdfapi/fpdf_objects.h

Issue 1084613006: Fix all remaining instances of FX_NEW. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: std::min Created 5 years, 8 months 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 | « no previous file | core/include/fxcrt/fx_memory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/include/fpdfapi/fpdf_objects.h
diff --git a/core/include/fpdfapi/fpdf_objects.h b/core/include/fpdfapi/fpdf_objects.h
index df5803c76c6e7f6957ba661e0b183dcd42e40ff8..03154653677c5419ac8a769fb043c5e25d46340f 100644
--- a/core/include/fpdfapi/fpdf_objects.h
+++ b/core/include/fpdfapi/fpdf_objects.h
@@ -113,7 +113,7 @@ public:
static CPDF_Boolean* Create(FX_BOOL value)
{
- return FX_NEW CPDF_Boolean(value);
+ return new CPDF_Boolean(value);
}
CPDF_Boolean() : CPDF_Object(PDFOBJ_BOOLEAN), m_bValue(false) { }
@@ -134,22 +134,22 @@ public:
static CPDF_Number* Create(int value)
{
- return FX_NEW CPDF_Number(value);
+ return new CPDF_Number(value);
}
static CPDF_Number* Create(FX_FLOAT value)
{
- return FX_NEW CPDF_Number(value);
+ return new CPDF_Number(value);
}
static CPDF_Number* Create(FX_BSTR str)
{
- return FX_NEW CPDF_Number(str);
+ return new CPDF_Number(str);
}
static CPDF_Number* Create(FX_BOOL bInteger, void* pData)
{
- return FX_NEW CPDF_Number(bInteger, pData);
+ return new CPDF_Number(bInteger, pData);
}
CPDF_Number() : CPDF_Object(PDFOBJ_NUMBER), m_bInteger(false), m_Integer(0) { }
@@ -212,12 +212,12 @@ public:
static CPDF_String* Create(const CFX_ByteString& str, FX_BOOL bHex = FALSE)
{
- return FX_NEW CPDF_String(str, bHex);
+ return new CPDF_String(str, bHex);
}
static CPDF_String* Create(const CFX_WideString& str)
{
- return FX_NEW CPDF_String(str);
+ return new CPDF_String(str);
}
CPDF_String() : CPDF_Object(PDFOBJ_STRING), m_bHex(FALSE) { }
@@ -255,17 +255,17 @@ public:
static CPDF_Name* Create(const CFX_ByteString& str)
{
- return FX_NEW CPDF_Name(str);
+ return new CPDF_Name(str);
}
static CPDF_Name* Create(FX_BSTR str)
{
- return FX_NEW CPDF_Name(str);
+ return new CPDF_Name(str);
}
static CPDF_Name* Create(FX_LPCSTR str)
{
- return FX_NEW CPDF_Name(str);
+ return new CPDF_Name(str);
}
CPDF_Name(const CFX_ByteString& str) : CPDF_Object(PDFOBJ_NAME), m_Name(str) { }
@@ -292,7 +292,7 @@ public:
static CPDF_Array* Create()
{
- return FX_NEW CPDF_Array();
+ return new CPDF_Array();
}
CPDF_Array() : CPDF_Object(PDFOBJ_ARRAY) { }
@@ -389,7 +389,7 @@ public:
static CPDF_Dictionary* Create()
{
- return FX_NEW CPDF_Dictionary();
+ return new CPDF_Dictionary();
}
CPDF_Dictionary() : CPDF_Object(PDFOBJ_DICTIONARY) { }
@@ -506,7 +506,7 @@ public:
static CPDF_Stream* Create(FX_LPBYTE pData, FX_DWORD size, CPDF_Dictionary* pDict)
{
- return FX_NEW CPDF_Stream(pData, size, pDict);
+ return new CPDF_Stream(pData, size, pDict);
}
CPDF_Stream(FX_LPBYTE pData, FX_DWORD size, CPDF_Dictionary* pDict);
@@ -664,7 +664,7 @@ public:
static CPDF_Null* Create()
{
- return FX_NEW CPDF_Null();
+ return new CPDF_Null();
}
CPDF_Null() : CPDF_Object(PDFOBJ_NULL) { }
@@ -675,7 +675,7 @@ public:
static CPDF_Reference* Create(CPDF_IndirectObjects* pDoc, int objnum)
{
- return FX_NEW CPDF_Reference(pDoc, objnum);
+ return new CPDF_Reference(pDoc, objnum);
}
CPDF_Reference(CPDF_IndirectObjects* pDoc, int objnum)
« no previous file with comments | « no previous file | core/include/fxcrt/fx_memory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698