Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(268)

Unified Diff: xfa/fwl/core/cfwl_widget.cpp

Issue 2486333004: Remove IFWL methods proxied from CFWL classes (Closed)
Patch Set: Rebase to master Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: xfa/fwl/core/cfwl_widget.cpp
diff --git a/xfa/fwl/core/cfwl_widget.cpp b/xfa/fwl/core/cfwl_widget.cpp
index 1dbe4451c772c62681732c08015a4ca8d70e012b..5ea5aebead8fbba46b447a658f3200ab20ead503 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)

Powered by Google App Engine
This is Rietveld 408576698