diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-22 20:03:17 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-22 20:03:17 +0000 |
commit | 6221f22c79a532f7dd422cc51afb91cb35bc349d (patch) | |
tree | 919954dcc9db6eb997040c03f0ce98b3417865a9 /xfa/fxfa/parser/cxfa_node.h | |
parent | ab218bf9f437d666e1ef7974c51f95f456bd036f (diff) | |
download | pdfium-6221f22c79a532f7dd422cc51afb91cb35bc349d.tar.xz |
Move WidgetAcc and IsWidgetReady to CXFA_Node
This CL moves the widget_acc storage and the is_widget_ready flag from
CXFA_Object to CXFA_Node.
Change-Id: I96aeb38a854f227985a5549dc67f1b84d924abb8
Reviewed-on: https://pdfium-review.googlesource.com/23330
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.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/xfa/fxfa/parser/cxfa_node.h b/xfa/fxfa/parser/cxfa_node.h index e99180e0dd..fa455ba21b 100644 --- a/xfa/fxfa/parser/cxfa_node.h +++ b/xfa/fxfa/parser/cxfa_node.h @@ -304,6 +304,14 @@ class CXFA_Node : public CXFA_Object { bool IsNull() const { return m_bIsNull; } void SetIsNull(bool val) { m_bIsNull = val; } + void SetWidgetReady(); + bool IsWidgetReady() const { return is_widget_ready_; } + CXFA_WidgetAcc* GetWidgetAcc() { + ASSERT(IsWidgetReady()); + ASSERT(acc_.get() != nullptr); + return acc_.get(); + } + protected: CXFA_Node(CXFA_Document* pDoc, XFA_PacketType ePacket, @@ -371,6 +379,8 @@ class CXFA_Node : public CXFA_Object { XFA_Element m_eUIType = XFA_Element::Unknown; bool m_bIsNull = true; bool m_bPreNull = true; + bool is_widget_ready_ = false; + std::unique_ptr<CXFA_WidgetAcc> acc_; }; #endif // XFA_FXFA_PARSER_CXFA_NODE_H_ |