diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-11-01 18:39:27 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-01 18:39:27 +0000 |
commit | 4ac35f239938877b15e6bbe1a5c73aab14a2ae5d (patch) | |
tree | 46541fbdad75ed9273e7f90cab3028b606dcf7b9 /xfa/fxfa/parser/cxfa_node.h | |
parent | a85e5ca5f2dfadcf9f3812a8ef039d1f206833a4 (diff) | |
download | pdfium-4ac35f239938877b15e6bbe1a5c73aab14a2ae5d.tar.xz |
Move the item methods into CXFA_Node propertly
When CreateInstance, GetCount, GetItem, RemoveItem and InsertItem were
moved out of the anonymous namespace they were not updated to remove the
first parameter. This Cl removes the first parameter and uses the
CXFA_Node as the thing to operate on.
Change-Id: I1b6dc956844786c8ba88ae508547c9cf6e91242a
Reviewed-on: https://pdfium-review.googlesource.com/17311
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_node.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_node.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/xfa/fxfa/parser/cxfa_node.h b/xfa/fxfa/parser/cxfa_node.h index 02326d933a..e7eafe3a29 100644 --- a/xfa/fxfa/parser/cxfa_node.h +++ b/xfa/fxfa/parser/cxfa_node.h @@ -60,14 +60,11 @@ class CXFA_Node : public CXFA_Object { CXFA_Node* GetParent() { return m_pParent; } CXFA_Node* GetChildNode() { return m_pChild; } - CXFA_Node* CreateInstance(CXFA_Node* pInstMgrNode, bool bDataMerge); - int32_t GetCount(CXFA_Node* pInstMgrNode); - CXFA_Node* GetItem(CXFA_Node* pInstMgrNode, int32_t iIndex); - void RemoveItem(CXFA_Node* pInstMgrNode, - CXFA_Node* pRemoveInstance, - bool bRemoveDataBinding = true); - void InsertItem(CXFA_Node* pInstMgrNode, - CXFA_Node* pNewInstance, + CXFA_Node* CreateInstance(bool bDataMerge); + int32_t GetCount(); + CXFA_Node* GetItem(int32_t iIndex); + void RemoveItem(CXFA_Node* pRemoveInstance, bool bRemoveDataBinding = true); + void InsertItem(CXFA_Node* pNewInstance, int32_t iPos, int32_t iCount = -1, bool bMoveDataBindingNodes = true); |