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

Side by Side Diff: xfa/fxfa/parser/cxfa_dataimporter.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 | « xfa/fxfa/parser/cxfa_data.h ('k') | xfa/fxfa/parser/cxfa_document.h » ('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 #include "xfa/fxfa/parser/cxfa_dataimporter.h" 7 #include "xfa/fxfa/parser/cxfa_dataimporter.h"
8 8
9 #include <memory> 9 #include <memory>
10 10
11 #include "core/fxcrt/fx_stream.h" 11 #include "core/fxcrt/fx_stream.h"
12 #include "xfa/fde/xml/fde_xml_imp.h" 12 #include "xfa/fde/xml/fde_xml_imp.h"
13 #include "xfa/fxfa/include/fxfa.h" 13 #include "xfa/fxfa/fxfa.h"
14 #include "xfa/fxfa/include/fxfa_basic.h" 14 #include "xfa/fxfa/fxfa_basic.h"
15 #include "xfa/fxfa/parser/cxfa_document.h" 15 #include "xfa/fxfa/parser/cxfa_document.h"
16 #include "xfa/fxfa/parser/cxfa_simple_parser.h" 16 #include "xfa/fxfa/parser/cxfa_simple_parser.h"
17 #include "xfa/fxfa/parser/xfa_object.h" 17 #include "xfa/fxfa/parser/xfa_object.h"
18 18
19 CXFA_DataImporter::CXFA_DataImporter(CXFA_Document* pDocument) 19 CXFA_DataImporter::CXFA_DataImporter(CXFA_Document* pDocument)
20 : m_pDocument(pDocument) { 20 : m_pDocument(pDocument) {
21 ASSERT(m_pDocument); 21 ASSERT(m_pDocument);
22 } 22 }
23 23
24 FX_BOOL CXFA_DataImporter::ImportData(IFX_FileRead* pDataDocument) { 24 FX_BOOL CXFA_DataImporter::ImportData(IFX_FileRead* pDataDocument) {
(...skipping 28 matching lines...) Expand all
53 } else { 53 } else {
54 CFDE_XMLNode* pXMLNode = pImportDataRoot->GetXMLMappingNode(); 54 CFDE_XMLNode* pXMLNode = pImportDataRoot->GetXMLMappingNode();
55 CFDE_XMLNode* pParentXMLNode = pXMLNode->GetNodeItem(CFDE_XMLNode::Parent); 55 CFDE_XMLNode* pParentXMLNode = pXMLNode->GetNodeItem(CFDE_XMLNode::Parent);
56 if (pParentXMLNode) 56 if (pParentXMLNode)
57 pParentXMLNode->RemoveChildNode(pXMLNode); 57 pParentXMLNode->RemoveChildNode(pXMLNode);
58 pDataModel->InsertChild(pImportDataRoot); 58 pDataModel->InsertChild(pImportDataRoot);
59 } 59 }
60 m_pDocument->DoDataRemerge(FALSE); 60 m_pDocument->DoDataRemerge(FALSE);
61 return TRUE; 61 return TRUE;
62 } 62 }
OLDNEW
« no previous file with comments | « xfa/fxfa/parser/cxfa_data.h ('k') | xfa/fxfa/parser/cxfa_document.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698