summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2018-01-29 20:49:26 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-01-29 20:49:26 +0000
commit4dd1b07b00842f33be3ebccdc8e4fd3219191c63 (patch)
treec48766c0fd8e7a4c88226fafbb4b4ad09d2c9760
parent59cdc7dc88310bd8cdf2ace60e0f567561d38dbb (diff)
downloadpdfium-4dd1b07b00842f33be3ebccdc8e4fd3219191c63.tar.xz
Fold single caller methods into callsite
This CL folds the GetNodeSameClassIndex, GetNodeSameNameIndex from CXFA_Node into the CJX_Tree callsites. Change-Id: Ia4f7750543e786ddd82abb4b6b4bde1bf1710f19 Reviewed-on: https://pdfium-review.googlesource.com/24471 Reviewed-by: Ryan Harrison <rharrison@chromium.org> Commit-Queue: dsinclair <dsinclair@chromium.org>
-rw-r--r--fxjs/xfa/cjx_tree.cpp17
-rw-r--r--xfa/fxfa/parser/cxfa_node.cpp16
-rw-r--r--xfa/fxfa/parser/cxfa_node.h2
3 files changed, 15 insertions, 20 deletions
diff --git a/fxjs/xfa/cjx_tree.cpp b/fxjs/xfa/cjx_tree.cpp
index e20115b9bc..c11d77b125 100644
--- a/fxjs/xfa/cjx_tree.cpp
+++ b/fxjs/xfa/cjx_tree.cpp
@@ -175,7 +175,13 @@ void CJX_Tree::index(CFXJSE_Value* pValue,
ThrowInvalidPropertyException();
return;
}
- pValue->SetInteger(ToNode(GetXFAObject())->GetNodeSameNameIndex());
+
+ CFXJSE_Engine* pScriptContext = GetDocument()->GetScriptContext();
+ if (!pScriptContext) {
+ pValue->SetInteger(-1);
+ return;
+ }
+ pValue->SetInteger(pScriptContext->GetIndexByName(ToNode(GetXFAObject())));
}
void CJX_Tree::classIndex(CFXJSE_Value* pValue,
@@ -185,7 +191,14 @@ void CJX_Tree::classIndex(CFXJSE_Value* pValue,
ThrowInvalidPropertyException();
return;
}
- pValue->SetInteger(ToNode(GetXFAObject())->GetNodeSameClassIndex());
+
+ CFXJSE_Engine* pScriptContext = GetDocument()->GetScriptContext();
+ if (!pScriptContext) {
+ pValue->SetInteger(-1);
+ return;
+ }
+ pValue->SetInteger(
+ pScriptContext->GetIndexByClassName(ToNode(GetXFAObject())));
}
void CJX_Tree::somExpression(CFXJSE_Value* pValue,
diff --git a/xfa/fxfa/parser/cxfa_node.cpp b/xfa/fxfa/parser/cxfa_node.cpp
index 2ccdd1d919..c97a0f3bfd 100644
--- a/xfa/fxfa/parser/cxfa_node.cpp
+++ b/xfa/fxfa/parser/cxfa_node.cpp
@@ -1331,22 +1331,6 @@ CXFA_Node* CXFA_Node::GetNextSameClassSiblingInternal(XFA_Element eType) const {
return nullptr;
}
-int32_t CXFA_Node::GetNodeSameNameIndex() const {
- CFXJSE_Engine* pScriptContext = m_pDocument->GetScriptContext();
- if (!pScriptContext) {
- return -1;
- }
- return pScriptContext->GetIndexByName(const_cast<CXFA_Node*>(this));
-}
-
-int32_t CXFA_Node::GetNodeSameClassIndex() const {
- CFXJSE_Engine* pScriptContext = m_pDocument->GetScriptContext();
- if (!pScriptContext) {
- return -1;
- }
- return pScriptContext->GetIndexByClassName(const_cast<CXFA_Node*>(this));
-}
-
CXFA_Node* CXFA_Node::GetInstanceMgrOfSubform() {
CXFA_Node* pInstanceMgr = nullptr;
if (m_ePacket == XFA_PacketType::Form) {
diff --git a/xfa/fxfa/parser/cxfa_node.h b/xfa/fxfa/parser/cxfa_node.h
index 99b035dfc7..3c532b0dc8 100644
--- a/xfa/fxfa/parser/cxfa_node.h
+++ b/xfa/fxfa/parser/cxfa_node.h
@@ -235,8 +235,6 @@ class CXFA_Node : public CXFA_Object {
return static_cast<T*>(GetNextSameClassSiblingInternal(eType));
}
- int32_t GetNodeSameNameIndex() const;
- int32_t GetNodeSameClassIndex() const;
CXFA_Node* GetInstanceMgrOfSubform();
CXFA_Occur* GetOccurIfExists();