From 3b3ce1a242f8445848d3f23d6c35ba01d7c645f4 Mon Sep 17 00:00:00 2001 From: dsinclair Date: Wed, 2 Nov 2016 14:51:25 -0700 Subject: Merge delegates into IFWL_* classes. This Cl removes ownership of the delgates from IFWL_Widget and puts it in the hand of the creating classes. In doing so, merge the delegates back into the IFWL_* classes to simplify logic. Review-Url: https://codereview.chromium.org/2467993003 --- xfa/fwl/core/ifwl_formproxy.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'xfa/fwl/core/ifwl_formproxy.cpp') diff --git a/xfa/fwl/core/ifwl_formproxy.cpp b/xfa/fwl/core/ifwl_formproxy.cpp index dee8973bc7..30c25827d5 100644 --- a/xfa/fwl/core/ifwl_formproxy.cpp +++ b/xfa/fwl/core/ifwl_formproxy.cpp @@ -13,7 +13,6 @@ IFWL_FormProxy::IFWL_FormProxy(const IFWL_App* app, const CFWL_WidgetImpProperties& properties, IFWL_Widget* pOuter) : IFWL_Form(app, properties, pOuter) { - SetDelegate(pdfium::MakeUnique(this)); } IFWL_FormProxy::~IFWL_FormProxy() {} @@ -38,9 +37,6 @@ FWL_Error IFWL_FormProxy::DrawWidget(CFX_Graphics* pGraphics, return FWL_Error::Succeeded; } -CFWL_FormProxyImpDelegate::CFWL_FormProxyImpDelegate(IFWL_FormProxy* pOwner) - : m_pOwner(pOwner) {} - -void CFWL_FormProxyImpDelegate::OnProcessMessage(CFWL_Message* pMessage) { - m_pOwner->m_pOuter->GetCurrentDelegate()->OnProcessMessage(pMessage); +void IFWL_FormProxy::OnProcessMessage(CFWL_Message* pMessage) { + m_pOuter->GetDelegate()->OnProcessMessage(pMessage); } -- cgit v1.2.3