| OLD | NEW |
| 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 "../../../foxitlib.h" | 7 #include "xfa/src/foxitlib.h" |
| 8 #include "../common/xfa_utils.h" | 8 #include "xfa/src/fxfa/src/common/xfa_utils.h" |
| 9 #include "../common/xfa_object.h" | 9 #include "xfa/src/fxfa/src/common/xfa_object.h" |
| 10 #include "../common/xfa_document.h" | 10 #include "xfa/src/fxfa/src/common/xfa_document.h" |
| 11 #include "../common/xfa_parser.h" | 11 #include "xfa/src/fxfa/src/common/xfa_parser.h" |
| 12 #include "../common/xfa_script.h" | 12 #include "xfa/src/fxfa/src/common/xfa_script.h" |
| 13 #include "../common/xfa_docdata.h" | 13 #include "xfa/src/fxfa/src/common/xfa_docdata.h" |
| 14 #include "../common/xfa_doclayout.h" | 14 #include "xfa/src/fxfa/src/common/xfa_doclayout.h" |
| 15 #include "../common/xfa_debug.h" | 15 #include "xfa/src/fxfa/src/common/xfa_localemgr.h" |
| 16 #include "../common/xfa_localemgr.h" | 16 #include "xfa/src/fxfa/src/common/xfa_fm2jsapi.h" |
| 17 #include "../common/xfa_fm2jsapi.h" | |
| 18 #include "xfa_debug_parser.h" | |
| 19 #include "xfa_basic_imp.h" | 17 #include "xfa_basic_imp.h" |
| 20 #include "xfa_document_layout_imp.h" | 18 #include "xfa_document_layout_imp.h" |
| 21 #include "xfa_script_datawindow.h" | 19 #include "xfa_script_datawindow.h" |
| 22 #include "xfa_script_eventpseudomodel.h" | 20 #include "xfa_script_eventpseudomodel.h" |
| 23 #include "xfa_script_hostpseudomodel.h" | 21 #include "xfa_script_hostpseudomodel.h" |
| 24 #include "xfa_script_logpseudomodel.h" | 22 #include "xfa_script_logpseudomodel.h" |
| 25 #include "xfa_script_layoutpseudomodel.h" | 23 #include "xfa_script_layoutpseudomodel.h" |
| 26 #include "xfa_script_signaturepseudomodel.h" | 24 #include "xfa_script_signaturepseudomodel.h" |
| 27 CXFA_Document::CXFA_Document(IXFA_DocParser* pParser) | 25 CXFA_Document::CXFA_Document(IXFA_DocParser* pParser) |
| 28 : m_pParser(pParser), | 26 : m_pParser(pParser), |
| (...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 pProtoNode)) { | 432 pProtoNode)) { |
| 435 continue; | 433 continue; |
| 436 } | 434 } |
| 437 } | 435 } |
| 438 if (!pProtoNode) { | 436 if (!pProtoNode) { |
| 439 continue; | 437 continue; |
| 440 } | 438 } |
| 441 XFA_ProtoMerge_MergeNode(this, pUseHrefNode, pProtoNode); | 439 XFA_ProtoMerge_MergeNode(this, pUseHrefNode, pProtoNode); |
| 442 } | 440 } |
| 443 } | 441 } |
| OLD | NEW |