diff options
author | dsinclair <dsinclair@chromium.org> | 2016-04-18 06:49:02 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-18 06:49:02 -0700 |
commit | 7adef41ed27ced7e18ee649a3d4f27a3cc00c51f (patch) | |
tree | fff2871099785daa42deff0cd847ba148c0fa1e2 /xfa/fwl/core/ifwl_widget.h | |
parent | 31e446374a7cf3f3353e42a03b6d5297e5cd60ec (diff) | |
download | pdfium-7adef41ed27ced7e18ee649a3d4f27a3cc00c51f.tar.xz |
Fold the FWL NoteThread classes up to the Thread classes.
The NoteThread classes only contained one member and don't provide any
added clarity. This CL moves the NoteDriver up to the Thread classes and
removes the NoteThread classes.
Review URL: https://codereview.chromium.org/1887703003
Diffstat (limited to 'xfa/fwl/core/ifwl_widget.h')
-rw-r--r-- | xfa/fwl/core/ifwl_widget.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fwl/core/ifwl_widget.h b/xfa/fwl/core/ifwl_widget.h index d8e757ac59..3540a3c87c 100644 --- a/xfa/fwl/core/ifwl_widget.h +++ b/xfa/fwl/core/ifwl_widget.h @@ -7,16 +7,16 @@ #ifndef XFA_FWL_CORE_IFWL_WIDGET_H_ #define XFA_FWL_CORE_IFWL_WIDGET_H_ -#include "xfa/fwl/core/fwl_error.h" +#include "core/fxcrt/include/fx_basic.h" #include "core/fxcrt/include/fx_coordinates.h" #include "core/fxcrt/include/fx_system.h" -#include "core/fxcrt/include/fx_basic.h" +#include "xfa/fwl/core/fwl_error.h" #include "xfa/fwl/core/ifwl_target.h" class CFX_Graphics; class IFWL_DataProvider; class IFWL_Form; -class IFWL_NoteThread; +class IFWL_Thread; class IFWL_ThemeProvider; class IFWL_WidgetDelegate; @@ -54,7 +54,7 @@ class IFWL_Widget : public IFWL_Target { FWL_ERR SetThemeProvider(IFWL_ThemeProvider* pThemeProvider); FWL_ERR SetDataProvider(IFWL_DataProvider* pDataProvider); IFWL_WidgetDelegate* SetDelegate(IFWL_WidgetDelegate* pDelegate); - IFWL_NoteThread* GetOwnerThread() const; + IFWL_Thread* GetOwnerThread() const; CFX_SizeF GetOffsetFromParent(IFWL_Widget* pParent); }; |