diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-08-16 11:08:33 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-08-16 17:19:42 +0000 |
commit | 816d7e4a0dccc049a1defe8a17e1b05c211665e1 (patch) | |
tree | a93c632b87bd4614ad34a570bb86e7cf8b6c44fb /xfa/fxfa/cxfa_ffapp.h | |
parent | 0c6b07d3fdbbabda8753e6457f4323237fc5be30 (diff) | |
download | pdfium-816d7e4a0dccc049a1defe8a17e1b05c211665e1.tar.xz |
Remove CFWL_WidgetMgrDelegate
This class is actually an accidentally renamed interface. There is only
one concrete class so fold the interface back into the concrete class.
Change-Id: If921a34595fad85750389f071ffdc9a5eae09f8e
Reviewed-on: https://pdfium-review.googlesource.com/11150
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_ffapp.h')
-rw-r--r-- | xfa/fxfa/cxfa_ffapp.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/xfa/fxfa/cxfa_ffapp.h b/xfa/fxfa/cxfa_ffapp.h index 0da4e79173..80e30d4c7e 100644 --- a/xfa/fxfa/cxfa_ffapp.h +++ b/xfa/fxfa/cxfa_ffapp.h @@ -18,13 +18,13 @@ #include "xfa/fwl/cfwl_app.h" #include "xfa/fxfa/fxfa.h" +class CFWL_WidgetMgr; class CXFA_DefFontMgr; class CXFA_FWLAdapterWidgetMgr; class CXFA_FWLTheme; class CXFA_FFDocHandler; class CXFA_FontMgr; class IFWL_AdapterTimerMgr; -class CFWL_WidgetMgrDelegate; class CXFA_FFApp { public: @@ -36,7 +36,7 @@ class CXFA_FFApp { void SetDefaultFontMgr(std::unique_ptr<CXFA_DefFontMgr> pFontMgr); CXFA_FFDocHandler* GetDocHandler(); - CXFA_FWLAdapterWidgetMgr* GetWidgetMgr(CFWL_WidgetMgrDelegate* pDelegate); + CXFA_FWLAdapterWidgetMgr* GetWidgetMgr(CFWL_WidgetMgr* pDelegate); CFGAS_FontMgr* GetFDEFontMgr(); CXFA_FWLTheme* GetFWLTheme(); @@ -44,9 +44,7 @@ class CXFA_FFApp { const CFWL_App* GetFWLApp() const { return m_pFWLApp.get(); } IFWL_AdapterTimerMgr* GetTimerMgr() const; CXFA_FontMgr* GetXFAFontMgr() const; - CFWL_WidgetMgrDelegate* GetWidgetMgrDelegate() const { - return m_pWidgetMgrDelegate.Get(); - } + CFWL_WidgetMgr* GetWidgetMgr() const { return m_pWidgetMgr.Get(); } void ClearEventTargets(); @@ -77,9 +75,9 @@ class CXFA_FFApp { std::unique_ptr<CXFA_FWLTheme> m_pFWLTheme; std::unique_ptr<CFWL_App> m_pFWLApp; - // |m_pWidgetMgrDelegate| has to be released before |m_pFWLApp|, since + // |m_pWidgetMgr| has to be released before |m_pFWLApp|, since // |m_pFWLApp| is its owner. - CFX_UnownedPtr<CFWL_WidgetMgrDelegate> m_pWidgetMgrDelegate; + CFX_UnownedPtr<CFWL_WidgetMgr> m_pWidgetMgr; }; #endif // XFA_FXFA_CXFA_FFAPP_H_ |