From a0d3231037816d3f0e377e9c57a2bfaa1372e151 Mon Sep 17 00:00:00 2001 From: dsinclair Date: Thu, 10 Nov 2016 14:22:06 -0800 Subject: Remove IFWL methods proxied from CFWL classes This CL removes a few methods from IFWL that are around just to proxy from CFWL methods which are, in turn, never called. Review-Url: https://codereview.chromium.org/2486333004 --- xfa/fwl/core/cfwl_widget.cpp | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'xfa/fwl/core/cfwl_widget.cpp') diff --git a/xfa/fwl/core/cfwl_widget.cpp b/xfa/fwl/core/cfwl_widget.cpp index 1dbe4451c7..5ea5aebead 100644 --- a/xfa/fwl/core/cfwl_widget.cpp +++ b/xfa/fwl/core/cfwl_widget.cpp @@ -43,21 +43,11 @@ void CFWL_Widget::GetWidgetRect(CFX_RectF& rect, bool bAutoSize) { m_pIface->GetWidgetRect(rect, bAutoSize); } -void CFWL_Widget::GetGlobalRect(CFX_RectF& rect) { - if (m_pIface) - m_pIface->GetGlobalRect(rect); -} - void CFWL_Widget::SetWidgetRect(const CFX_RectF& rect) { if (m_pIface) m_pIface->SetWidgetRect(rect); } -void CFWL_Widget::GetClientRect(CFX_RectF& rect) { - if (m_pIface) - m_pIface->GetClientRect(rect); -} - void CFWL_Widget::ModifyStyles(uint32_t dwStylesAdded, uint32_t dwStylesRemoved) { if (m_pIface) -- cgit v1.2.3