diff options
author | dsinclair <dsinclair@chromium.org> | 2016-04-28 10:51:13 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-28 10:51:13 -0700 |
commit | 7322343b9322b93d97077575f95a00dcca3f0451 (patch) | |
tree | 36337e0a2aff2147a9067477f982496129f0f7a1 /xfa/fwl/core/fwl_appimp.h | |
parent | e6ebf7af7ea94d48091be300cec84b499d3b8ae0 (diff) | |
download | pdfium-7322343b9322b93d97077575f95a00dcca3f0451.tar.xz |
More FWL interface cleanup.
This CL merges the IFWL_Target class into IFWL_Widget and IFWL_Thread into
IFWL_App. The IFWL_WidgetMgrDelegate, IFWL_NoteDriver and IFWL_NotThread are
removed in favour of their concrete classes.
Review-Url: https://codereview.chromium.org/1921853006
Diffstat (limited to 'xfa/fwl/core/fwl_appimp.h')
-rw-r--r-- | xfa/fwl/core/fwl_appimp.h | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/xfa/fwl/core/fwl_appimp.h b/xfa/fwl/core/fwl_appimp.h index a7130602fd..8743b54a43 100644 --- a/xfa/fwl/core/fwl_appimp.h +++ b/xfa/fwl/core/fwl_appimp.h @@ -9,18 +9,23 @@ #include <memory> -#include "xfa/fwl/core/fwl_threadimp.h" +#include "xfa/fwl/core/fwl_noteimp.h" class CFWL_WidgetMgr; class IFWL_AdapterNative; -class IFWL_WidgetMgr; -class IFWL_ThemeProvider; class IFWL_App; +class IFWL_NoteThread; +class IFWL_ThemeProvider; +class IFWL_WidgetMgr; -class CFWL_AppImp : public CFWL_ThreadImp { +class CFWL_AppImp { public: CFWL_AppImp(IFWL_App* pIface, IFWL_AdapterNative* pAdapter); virtual ~CFWL_AppImp(); + + IFWL_App* GetInterface() const { return m_pIface; } + CFWL_NoteDriver* GetNoteDriver() const { return m_pNoteDriver.get(); } + virtual FWL_ERR Initialize(); virtual FWL_ERR Finalize(); virtual IFWL_AdapterNative* GetAdapterNative() const; @@ -33,6 +38,10 @@ class CFWL_AppImp : public CFWL_ThreadImp { IFWL_AdapterNative* const m_pAdapterNative; std::unique_ptr<CFWL_WidgetMgr> m_pWidgetMgr; IFWL_ThemeProvider* m_pThemeProvider; + std::unique_ptr<CFWL_NoteDriver> m_pNoteDriver; + + private: + IFWL_App* const m_pIface; }; #endif // XFA_FWL_CORE_FWL_APPIMP_H_ |