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

Side by Side Diff: xfa/fde/xml/cfx_saxreader.cpp

Issue 2383593002: Move xfa/fxfa/include to xfa/fxfa (Closed)
Patch Set: Rebase to master Created 4 years, 2 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 unified diff | Download patch
« no previous file with comments | « fpdfsdk/fpdfxfa/fpdfxfa_page.cpp ('k') | xfa/fgas/font/fgas_gefont.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 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 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 #include "xfa/fde/xml/cfx_saxreader.h" 7 #include "xfa/fde/xml/cfx_saxreader.h"
8 8
9 #include <algorithm> 9 #include <algorithm>
10 10
11 #include "xfa/fxfa/include/xfa_checksum.h" 11 #include "xfa/fxfa/xfa_checksum.h"
12 12
13 enum class CFX_SaxMode { 13 enum class CFX_SaxMode {
14 Text = 0, 14 Text = 0,
15 NodeStart, 15 NodeStart,
16 DeclOrComment, 16 DeclOrComment,
17 DeclNode, 17 DeclNode,
18 Comment, 18 Comment,
19 CommentContent, 19 CommentContent,
20 TagName, 20 TagName,
21 TagAttributeName, 21 TagAttributeName,
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after
708 void CFX_SAXReader::SkipCurrentNode() { 708 void CFX_SAXReader::SkipCurrentNode() {
709 if (!m_pCurItem) 709 if (!m_pCurItem)
710 return; 710 return;
711 711
712 m_pCurItem->m_bSkip = TRUE; 712 m_pCurItem->m_bSkip = TRUE;
713 } 713 }
714 714
715 void CFX_SAXReader::SetHandler(CXFA_SAXReaderHandler* pHandler) { 715 void CFX_SAXReader::SetHandler(CXFA_SAXReaderHandler* pHandler) {
716 m_pHandler = pHandler; 716 m_pHandler = pHandler;
717 } 717 }
OLDNEW
« no previous file with comments | « fpdfsdk/fpdfxfa/fpdfxfa_page.cpp ('k') | xfa/fgas/font/fgas_gefont.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698