summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_node.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2018-01-23 21:19:22 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-01-23 21:19:22 +0000
commit003e96c7c3e15afd2969d33bc91ca459bb73a3b5 (patch)
treef0384eabf3c3a63f8dca99979213868c120db3ce /xfa/fxfa/parser/cxfa_node.h
parent414cc9c9676b01587010ec5475d495eef6e05ba3 (diff)
downloadpdfium-003e96c7c3e15afd2969d33bc91ca459bb73a3b5.tar.xz
Remove CXFA_Node::GetNode and m_pNode
This CL removes the node scaffolding added when merging CXFA_WidgetAcc into CXFA_Node. Change-Id: I02a6b80d2c910816b1aec613078d4871c29369b3 Reviewed-on: https://pdfium-review.googlesource.com/23650 Commit-Queue: dsinclair <dsinclair@chromium.org> Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_node.h')
-rw-r--r--xfa/fxfa/parser/cxfa_node.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/xfa/fxfa/parser/cxfa_node.h b/xfa/fxfa/parser/cxfa_node.h
index 47fd30bc8e..19111a6580 100644
--- a/xfa/fxfa/parser/cxfa_node.h
+++ b/xfa/fxfa/parser/cxfa_node.h
@@ -360,10 +360,6 @@ class CXFA_Node : public CXFA_Object {
RetainPtr<CFGAS_GEFont> GetFDEFont(CXFA_FFDoc* doc);
- // TODO(dsinclair): Remove post WidgetAcc merge.
- CXFA_Node* GetNode() { return this; }
-
- bool IsOpenAccess() const;
bool IsListBox();
bool IsAllowNeutral();
bool IsRadioButton();
@@ -371,8 +367,8 @@ class CXFA_Node : public CXFA_Object {
bool IsMultiLine();
XFA_AttributeEnum GetButtonHighlight();
- bool HasButtonRollover() const;
- bool HasButtonDown() const;
+ bool HasButtonRollover();
+ bool HasButtonDown();
bool IsCheckButtonRound();
XFA_AttributeEnum GetCheckButtonMark();
@@ -539,8 +535,6 @@ class CXFA_Node : public CXFA_Object {
bool m_bPreNull = true;
bool is_widget_ready_ = false;
std::unique_ptr<CXFA_WidgetLayoutData> m_pLayoutData;
- // TODO(dsinclair): Remove post WidgetAcc merge.
- CXFA_Node* m_pNode;
};
#endif // XFA_FXFA_PARSER_CXFA_NODE_H_