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

Unified Diff: xfa/fwl/core/cfwl_widgetproperties.h

Issue 2506253004: Split fwl/core class pt I. (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
« no previous file with comments | « xfa/fwl/core/cfwl_sysbtn.cpp ('k') | xfa/fwl/core/ifwl_barcode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/core/cfwl_widgetproperties.h
diff --git a/xfa/fwl/core/cfwl_widgetproperties.h b/xfa/fwl/core/cfwl_widgetproperties.h
index 9963b5f357cd894092bccc86e7e259d4d6341d4c..cadba3f8c7f9785026e1ce71fbd2587672d58609 100644
--- a/xfa/fwl/core/cfwl_widgetproperties.h
+++ b/xfa/fwl/core/cfwl_widgetproperties.h
@@ -10,15 +10,15 @@
#include "core/fxcrt/fx_coordinates.h"
#include "core/fxcrt/fx_system.h"
#include "xfa/fwl/core/fwl_widgetdef.h"
+#include "xfa/fwl/core/ifwl_widget.h"
-class IFWL_DataProvider;
class IFWL_ThemeProvider;
class IFWL_Widget;
class CFWL_WidgetProperties {
public:
CFWL_WidgetProperties();
- CFWL_WidgetProperties(IFWL_DataProvider* dataProvider);
+ CFWL_WidgetProperties(IFWL_Widget::DataProvider* dataProvider);
~CFWL_WidgetProperties();
CFX_RectF m_rtWidget;
@@ -26,7 +26,7 @@ class CFWL_WidgetProperties {
uint32_t m_dwStyleExes;
uint32_t m_dwStates;
IFWL_ThemeProvider* m_pThemeProvider;
- IFWL_DataProvider* m_pDataProvider;
+ IFWL_Widget::DataProvider* m_pDataProvider;
IFWL_Widget* m_pParent;
IFWL_Widget* m_pOwner;
};
@@ -35,7 +35,7 @@ inline CFWL_WidgetProperties::CFWL_WidgetProperties()
: CFWL_WidgetProperties(nullptr) {}
inline CFWL_WidgetProperties::CFWL_WidgetProperties(
- IFWL_DataProvider* dataProvider)
+ IFWL_Widget::DataProvider* dataProvider)
: m_dwStyles(FWL_WGTSTYLE_Child),
m_dwStyleExes(0),
m_dwStates(0),
« no previous file with comments | « xfa/fwl/core/cfwl_sysbtn.cpp ('k') | xfa/fwl/core/ifwl_barcode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698