diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-04-09 20:12:05 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-04-09 20:12:05 +0000 |
commit | 124abf5d68b9fe96bf8a95f239b77fdd47fdc556 (patch) | |
tree | be5f7496c81c12dc593798e9769550836ffc1324 /xfa/fxfa/parser/cxfa_simple_parser.h | |
parent | 741d5e1e0a64b85717ad054d3fd8807c66845a50 (diff) | |
download | pdfium-124abf5d68b9fe96bf8a95f239b77fdd47fdc556.tar.xz |
Merge CXFA_DocumentParser::{Start|Do}Parse methods
This CL combines the StartParse and DoParse methods of
CXFA_DocumentParser into a single Parse method since they are always
called together.
Change-Id: I45f38b2730f47c4719ca4f54c32ee8db6f11470d
Reviewed-on: https://pdfium-review.googlesource.com/29991
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_simple_parser.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_simple_parser.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxfa/parser/cxfa_simple_parser.h b/xfa/fxfa/parser/cxfa_simple_parser.h index 1300a8c4f2..c5c3eade87 100644 --- a/xfa/fxfa/parser/cxfa_simple_parser.h +++ b/xfa/fxfa/parser/cxfa_simple_parser.h @@ -25,8 +25,8 @@ class CXFA_SimpleParser { explicit CXFA_SimpleParser(CXFA_Document* pFactory); ~CXFA_SimpleParser(); - int32_t StartParse(const RetainPtr<IFX_SeekableStream>& pStream, - XFA_PacketType ePacketID); + void StartParse(const RetainPtr<IFX_SeekableStream>& pStream, + XFA_PacketType ePacketID); int32_t DoParse(); CFX_XMLNode* ParseXMLData(const ByteString& wsXML); void ConstructXFANode(CXFA_Node* pXFANode, CFX_XMLNode* pXMLNode); |