From a1b0772321e9b839073b9b312bac22143f2d4011 Mon Sep 17 00:00:00 2001 From: dsinclair Date: Mon, 11 Jul 2016 08:20:58 -0700 Subject: Remove IXFA_Parser, cleanup XFA parser code. The IXFA_Parser only created a CXFA_SimpleParser, the CXFA_DocumentParser is only created in one spot and doesn't need all the IXFA_Parser methods. This CL removes IXFA_Parser, instantiates the CXFA_SimpleParser where needed and cleans up surrounding code. Review-Url: https://codereview.chromium.org/2123133004 --- xfa/fxfa/parser/xfa_parser.h | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 xfa/fxfa/parser/xfa_parser.h (limited to 'xfa/fxfa/parser/xfa_parser.h') diff --git a/xfa/fxfa/parser/xfa_parser.h b/xfa/fxfa/parser/xfa_parser.h deleted file mode 100644 index 90b462541c..0000000000 --- a/xfa/fxfa/parser/xfa_parser.h +++ /dev/null @@ -1,35 +0,0 @@ -// Copyright 2014 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_FXFA_PARSER_XFA_PARSER_H_ -#define XFA_FXFA_PARSER_XFA_PARSER_H_ - -#include "xfa/fxfa/parser/xfa_document.h" - -class CFDE_XMLDoc; - -class IXFA_Parser { - public: - static IXFA_Parser* Create(CXFA_Document* pFactory, - FX_BOOL bDocumentParser = FALSE); - - virtual ~IXFA_Parser() {} - virtual void Release() = 0; - virtual int32_t StartParse(IFX_FileRead* pStream, - XFA_XDPPACKET ePacketID = XFA_XDPPACKET_XDP) = 0; - virtual int32_t DoParse(IFX_Pause* pPause = nullptr) = 0; - virtual int32_t ParseXMLData(const CFX_WideString& wsXML, - CFDE_XMLNode*& pXMLNode, - IFX_Pause* pPause = nullptr) = 0; - virtual void ConstructXFANode(CXFA_Node* pXFANode, - CFDE_XMLNode* pXMLNode) = 0; - virtual CXFA_Document* GetFactory() const = 0; - virtual CXFA_Node* GetRootNode() const = 0; - virtual CFDE_XMLDoc* GetXMLDoc() const = 0; - virtual void CloseParser() = 0; -}; - -#endif // XFA_FXFA_PARSER_XFA_PARSER_H_ -- cgit v1.2.3