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

Unified Diff: xfa/fxfa/parser/xfa_parser.h

Issue 2123133004: Remove IXFA_Parser, cleanup XFA parser code. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master Created 4 years, 5 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 | « xfa/fxfa/parser/xfa_object_imp.cpp ('k') | xfa/fxfa/parser/xfa_parser_imp.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: 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 90b462541c44f2905cfbb67e0cdf0624d9f75fad..0000000000000000000000000000000000000000
--- 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_
« no previous file with comments | « xfa/fxfa/parser/xfa_object_imp.cpp ('k') | xfa/fxfa/parser/xfa_parser_imp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698