diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-10-26 15:09:33 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-10-26 15:09:33 -0700 |
commit | 811a4f617283a3ea22381a293b71d3c68c628905 (patch) | |
tree | 317ab838ad97d630a6f4d858319baa9ac4e3c91d /core/include | |
parent | b1abf37585d86df780603a5d8a5a6af4161202a6 (diff) | |
download | pdfium-811a4f617283a3ea22381a293b71d3c68c628905.tar.xz |
Remove CPDF_Reference::Create(), make logic match master
Makes the files in this CL identical to master, since there are
no XFA specifics.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1425663003 .
Diffstat (limited to 'core/include')
-rw-r--r-- | core/include/fpdfapi/fpdf_objects.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/core/include/fpdfapi/fpdf_objects.h b/core/include/fpdfapi/fpdf_objects.h index 7287814f9a..419d5fc23e 100644 --- a/core/include/fpdfapi/fpdf_objects.h +++ b/core/include/fpdfapi/fpdf_objects.h @@ -585,10 +585,6 @@ class CPDF_Null : public CPDF_Object { }; class CPDF_Reference : public CPDF_Object { public: - static CPDF_Reference* Create(CPDF_IndirectObjects* pDoc, int objnum) { - return new CPDF_Reference(pDoc, objnum); - } - CPDF_Reference(CPDF_IndirectObjects* pDoc, int objnum) : CPDF_Object(PDFOBJ_REFERENCE), m_pObjList(pDoc), m_RefObjNum(objnum) {} |