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

Side by Side Diff: xfa/fxfa/parser/cxfa_document_parser.h

Issue 2443723002: Rename IFX_ stream names (Closed)
Patch Set: Nits Created 4 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « xfa/fxfa/parser/cxfa_dataimporter.cpp ('k') | xfa/fxfa/parser/cxfa_document_parser.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #ifndef XFA_FXFA_PARSER_CXFA_DOCUMENT_PARSER_H_ 7 #ifndef XFA_FXFA_PARSER_CXFA_DOCUMENT_PARSER_H_
8 #define XFA_FXFA_PARSER_CXFA_DOCUMENT_PARSER_H_ 8 #define XFA_FXFA_PARSER_CXFA_DOCUMENT_PARSER_H_
9 9
10 #include <memory> 10 #include <memory>
11 11
12 #include "xfa/fxfa/parser/cxfa_simple_parser.h" 12 #include "xfa/fxfa/parser/cxfa_simple_parser.h"
13 13
14 class CFDE_XMLDoc; 14 class CFDE_XMLDoc;
15 class CXFA_Document; 15 class CXFA_Document;
16 class CXFA_FFNotify; 16 class CXFA_FFNotify;
17 class CXFA_Notify; 17 class CXFA_Notify;
18 class IFX_FileRead; 18 class IFX_SeekableReadStream;
19 class IFX_Pause; 19 class IFX_Pause;
20 20
21 class CXFA_DocumentParser { 21 class CXFA_DocumentParser {
22 public: 22 public:
23 explicit CXFA_DocumentParser(CXFA_FFNotify* pNotify); 23 explicit CXFA_DocumentParser(CXFA_FFNotify* pNotify);
24 ~CXFA_DocumentParser(); 24 ~CXFA_DocumentParser();
25 25
26 int32_t StartParse(IFX_FileRead* pStream, XFA_XDPPACKET ePacketID); 26 int32_t StartParse(IFX_SeekableReadStream* pStream, XFA_XDPPACKET ePacketID);
27 int32_t DoParse(IFX_Pause* pPause); 27 int32_t DoParse(IFX_Pause* pPause);
28 28
29 CFDE_XMLDoc* GetXMLDoc() const; 29 CFDE_XMLDoc* GetXMLDoc() const;
30 CXFA_FFNotify* GetNotify() const; 30 CXFA_FFNotify* GetNotify() const;
31 CXFA_Document* GetDocument() const; 31 CXFA_Document* GetDocument() const;
32 32
33 protected: 33 protected:
34 CXFA_SimpleParser m_nodeParser; 34 CXFA_SimpleParser m_nodeParser;
35 CXFA_FFNotify* m_pNotify; 35 CXFA_FFNotify* m_pNotify;
36 std::unique_ptr<CXFA_Document> m_pDocument; 36 std::unique_ptr<CXFA_Document> m_pDocument;
37 }; 37 };
38 38
39 #endif // XFA_FXFA_PARSER_CXFA_DOCUMENT_PARSER_H_ 39 #endif // XFA_FXFA_PARSER_CXFA_DOCUMENT_PARSER_H_
OLDNEW
« no previous file with comments | « xfa/fxfa/parser/cxfa_dataimporter.cpp ('k') | xfa/fxfa/parser/cxfa_document_parser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698