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

Side by Side Diff: xfa/fxfa/parser/xfa_object_imp.cpp

Issue 2136213002: Rename fxjse/ to fxjs/ update files to match class names. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Add todo Created 4 years, 5 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/xfa_object.h ('k') | xfa/fxfa/parser/xfa_script.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 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/fxfa/parser/xfa_object.h" 7 #include "xfa/fxfa/parser/xfa_object.h"
8 8
9 #include <memory> 9 #include <memory>
10 10
11 #include "core/fxcrt/include/fx_ext.h" 11 #include "core/fxcrt/include/fx_ext.h"
12 #include "fxjse/include/cfxjse_arguments.h" 12 #include "fxjs/include/cfxjse_arguments.h"
13 #include "third_party/base/stl_util.h" 13 #include "third_party/base/stl_util.h"
14 #include "xfa/fde/xml/fde_xml_imp.h" 14 #include "xfa/fde/xml/fde_xml_imp.h"
15 #include "xfa/fgas/crt/fgas_codepage.h" 15 #include "xfa/fgas/crt/fgas_codepage.h"
16 #include "xfa/fgas/crt/fgas_system.h" 16 #include "xfa/fgas/crt/fgas_system.h"
17 #include "xfa/fxfa/app/xfa_ffnotify.h" 17 #include "xfa/fxfa/app/xfa_ffnotify.h"
18 #include "xfa/fxfa/parser/cxfa_occur.h" 18 #include "xfa/fxfa/parser/cxfa_occur.h"
19 #include "xfa/fxfa/parser/cxfa_simple_parser.h" 19 #include "xfa/fxfa/parser/cxfa_simple_parser.h"
20 #include "xfa/fxfa/parser/xfa_basic_imp.h" 20 #include "xfa/fxfa/parser/xfa_basic_imp.h"
21 #include "xfa/fxfa/parser/xfa_doclayout.h" 21 #include "xfa/fxfa/parser/xfa_doclayout.h"
22 #include "xfa/fxfa/parser/xfa_document.h" 22 #include "xfa/fxfa/parser/xfa_document.h"
(...skipping 5232 matching lines...) Expand 10 before | Expand all | Expand 10 after
5255 return m_pAttachNode->InsertChild(pNewNode, pBeforeNode); 5255 return m_pAttachNode->InsertChild(pNewNode, pBeforeNode);
5256 } 5256 }
5257 FX_BOOL CXFA_AttachNodeList::Remove(CXFA_Node* pNode) { 5257 FX_BOOL CXFA_AttachNodeList::Remove(CXFA_Node* pNode) {
5258 return m_pAttachNode->RemoveChild(pNode); 5258 return m_pAttachNode->RemoveChild(pNode);
5259 } 5259 }
5260 CXFA_Node* CXFA_AttachNodeList::Item(int32_t iIndex) { 5260 CXFA_Node* CXFA_AttachNodeList::Item(int32_t iIndex) {
5261 return m_pAttachNode->GetChild( 5261 return m_pAttachNode->GetChild(
5262 iIndex, XFA_Element::Unknown, 5262 iIndex, XFA_Element::Unknown,
5263 m_pAttachNode->GetElementType() == XFA_Element::Subform); 5263 m_pAttachNode->GetElementType() == XFA_Element::Subform);
5264 } 5264 }
OLDNEW
« no previous file with comments | « xfa/fxfa/parser/xfa_object.h ('k') | xfa/fxfa/parser/xfa_script.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698