summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BUILD.gn1
-rw-r--r--xfa/fde/xml/cfde_xmlchardata.cpp2
-rw-r--r--xfa/fde/xml/cfde_xmlchardata.h4
-rw-r--r--xfa/fde/xml/cfde_xmldeclaration.h18
4 files changed, 3 insertions, 22 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 5c0017dd06..961a5108d9 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -1406,7 +1406,6 @@ if (pdf_enable_xfa) {
"xfa/fde/ifde_txtedtpage.h",
"xfa/fde/xml/cfde_xmlchardata.cpp",
"xfa/fde/xml/cfde_xmlchardata.h",
- "xfa/fde/xml/cfde_xmldeclaration.h",
"xfa/fde/xml/cfde_xmldoc.cpp",
"xfa/fde/xml/cfde_xmldoc.h",
"xfa/fde/xml/cfde_xmlelement.cpp",
diff --git a/xfa/fde/xml/cfde_xmlchardata.cpp b/xfa/fde/xml/cfde_xmlchardata.cpp
index 40e4730dea..2339307938 100644
--- a/xfa/fde/xml/cfde_xmlchardata.cpp
+++ b/xfa/fde/xml/cfde_xmlchardata.cpp
@@ -7,7 +7,7 @@
#include "xfa/fde/xml/cfde_xmlchardata.h"
CFDE_XMLCharData::CFDE_XMLCharData(const CFX_WideString& wsCData)
- : CFDE_XMLDeclaration(), m_wsCharData(wsCData) {}
+ : CFDE_XMLNode(), m_wsCharData(wsCData) {}
CFDE_XMLCharData::~CFDE_XMLCharData() {}
diff --git a/xfa/fde/xml/cfde_xmlchardata.h b/xfa/fde/xml/cfde_xmlchardata.h
index 308ec1721b..ea1d3aa4bf 100644
--- a/xfa/fde/xml/cfde_xmlchardata.h
+++ b/xfa/fde/xml/cfde_xmlchardata.h
@@ -8,9 +8,9 @@
#define XFA_FDE_XML_CFDE_XMLCHARDATA_H_
#include "core/fxcrt/fx_string.h"
-#include "xfa/fde/xml/cfde_xmldeclaration.h"
+#include "xfa/fde/xml/cfde_xmlnode.h"
-class CFDE_XMLCharData : public CFDE_XMLDeclaration {
+class CFDE_XMLCharData : public CFDE_XMLNode {
public:
explicit CFDE_XMLCharData(const CFX_WideString& wsCData);
~CFDE_XMLCharData() override;
diff --git a/xfa/fde/xml/cfde_xmldeclaration.h b/xfa/fde/xml/cfde_xmldeclaration.h
deleted file mode 100644
index ade66c470f..0000000000
--- a/xfa/fde/xml/cfde_xmldeclaration.h
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2017 PDFium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-
-#ifndef XFA_FDE_XML_CFDE_XMLDECLARATION_H_
-#define XFA_FDE_XML_CFDE_XMLDECLARATION_H_
-
-#include "xfa/fde/xml/cfde_xmlnode.h"
-
-class CFDE_XMLDeclaration : public CFDE_XMLNode {
- public:
- CFDE_XMLDeclaration() {}
- ~CFDE_XMLDeclaration() override {}
-};
-
-#endif // XFA_FDE_XML_CFDE_XMLDECLARATION_H_