From ae82b696f236bc5bd1375532bcf867fcc6aa9126 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Fri, 29 Jun 2018 16:19:59 +0000 Subject: Use more UnownedPtr<> in cxfa_ffwidget Change-Id: Iae962711f522ad52e77f19201d00d9ab86096ca4 Reviewed-on: https://pdfium-review.googlesource.com/36510 Commit-Queue: Tom Sepez Reviewed-by: Lei Zhang --- xfa/fxfa/cxfa_ffwidget.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'xfa/fxfa/cxfa_ffwidget.h') diff --git a/xfa/fxfa/cxfa_ffwidget.h b/xfa/fxfa/cxfa_ffwidget.h index f8d97dc551..283c8cbbc7 100644 --- a/xfa/fxfa/cxfa_ffwidget.h +++ b/xfa/fxfa/cxfa_ffwidget.h @@ -140,8 +140,11 @@ class CXFA_FFWidget : public CXFA_ContentLayoutItem { virtual FormFieldType GetFormFieldType(); - CXFA_FFPageView* GetPageView() const { return m_pPageView; } + CXFA_FFPageView* GetPageView() const { return m_pPageView.Get(); } void SetPageView(CXFA_FFPageView* pPageView) { m_pPageView = pPageView; } + CXFA_FFDocView* GetDocView() const { return m_pDocView.Get(); } + void SetDocView(CXFA_FFDocView* pDocView) { m_pDocView = pDocView; } + const CFX_RectF& GetWidgetRect() const; const CFX_RectF& RecacheWidgetRect() const; uint32_t GetStatus(); @@ -149,8 +152,6 @@ class CXFA_FFWidget : public CXFA_ContentLayoutItem { CXFA_Node* GetNode() const { return m_pNode.Get(); } - CXFA_FFDocView* GetDocView(); - void SetDocView(CXFA_FFDocView* pDocView); CXFA_FFDoc* GetDoc(); CXFA_FFApp* GetApp(); IXFA_AppProvider* GetAppProvider(); @@ -182,8 +183,8 @@ class CXFA_FFWidget : public CXFA_ContentLayoutItem { bool IsButtonDown(); void SetButtonDown(bool bSet); - CXFA_FFDocView* m_pDocView = nullptr; - CXFA_FFPageView* m_pPageView = nullptr; + UnownedPtr m_pDocView; + UnownedPtr m_pPageView; UnownedPtr const m_pNode; mutable CFX_RectF m_rtWidget; }; -- cgit v1.2.3