From 6221f22c79a532f7dd422cc51afb91cb35bc349d Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Mon, 22 Jan 2018 20:03:17 +0000 Subject: 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 Reviewed-by: Henrique Nakashima --- xfa/fxfa/parser/cxfa_node.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'xfa/fxfa/parser/cxfa_node.h') 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 acc_; }; #endif // XFA_FXFA_PARSER_CXFA_NODE_H_ -- cgit v1.2.3