From 4027887ee29a7f4920b03041068bff9bde239782 Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Tue, 10 Apr 2018 13:01:07 +0000 Subject: Merge CXFA_SimpleParser::{Start|Do}Parse The StartParse and DoParse methods have been merged into a single Parse method. Change-Id: I1310bda90b853c11af8b8d1794de6b5c19e931cf Reviewed-on: https://pdfium-review.googlesource.com/30010 Reviewed-by: Henrique Nakashima Commit-Queue: dsinclair --- xfa/fxfa/parser/cxfa_simple_parser.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'xfa/fxfa/parser/cxfa_simple_parser.h') diff --git a/xfa/fxfa/parser/cxfa_simple_parser.h b/xfa/fxfa/parser/cxfa_simple_parser.h index c5c3eade87..cef9c9af54 100644 --- a/xfa/fxfa/parser/cxfa_simple_parser.h +++ b/xfa/fxfa/parser/cxfa_simple_parser.h @@ -25,9 +25,9 @@ class CXFA_SimpleParser { explicit CXFA_SimpleParser(CXFA_Document* pFactory); ~CXFA_SimpleParser(); - void StartParse(const RetainPtr& pStream, - XFA_PacketType ePacketID); - int32_t DoParse(); + int32_t Parse(const RetainPtr& pStream, + XFA_PacketType ePacketID); + CFX_XMLNode* ParseXMLData(const ByteString& wsXML); void ConstructXFANode(CXFA_Node* pXFANode, CFX_XMLNode* pXMLNode); CXFA_Node* GetRootNode() const; @@ -77,8 +77,6 @@ class CXFA_SimpleParser { UnownedPtr m_pFactory; // TODO(dsinclair): Figure out who owns this. CXFA_Node* m_pRootNode = nullptr; - XFA_PacketType m_ePacketID = XFA_PacketType::User; - bool m_bParseStarted = false; const bool m_bDocumentParser; }; -- cgit v1.2.3