diff options
author | dsinclair <dsinclair@chromium.org> | 2016-11-22 15:56:11 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-22 15:56:11 -0800 |
commit | 1a7534a1a477323f7b8497e359f6af6e9bd54cd5 (patch) | |
tree | 0c3ad1071eb568a533d558086c1cc32728e396fe /xfa/fxfa/xfa_ffapp.h | |
parent | d64372989fcb4e5af66f437ad7b8be343cb1aa67 (diff) | |
download | pdfium-1a7534a1a477323f7b8497e359f6af6e9bd54cd5.tar.xz |
Rename IFWL_App to CFWL_App
This class is not an interface but a concrete implementation. Rename to match.
Review-Url: https://codereview.chromium.org/2521303002
Diffstat (limited to 'xfa/fxfa/xfa_ffapp.h')
-rw-r--r-- | xfa/fxfa/xfa_ffapp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fxfa/xfa_ffapp.h b/xfa/fxfa/xfa_ffapp.h index 554b7b9328..4b40ba76c8 100644 --- a/xfa/fxfa/xfa_ffapp.h +++ b/xfa/fxfa/xfa_ffapp.h @@ -13,7 +13,7 @@ #include "core/fpdfapi/parser/cpdf_stream.h" #include "core/fpdfapi/parser/cpdf_stream_acc.h" #include "xfa/fgas/font/cfgas_fontmgr.h" -#include "xfa/fwl/core/ifwl_app.h" +#include "xfa/fwl/core/cfwl_app.h" #include "xfa/fxfa/fxfa.h" class CXFA_DefFontMgr; @@ -56,7 +56,7 @@ class CXFA_FFApp { CXFA_FWLTheme* GetFWLTheme(); IXFA_AppProvider* GetAppProvider() const { return m_pProvider; } - const IFWL_App* GetFWLApp() const { return m_pFWLApp.get(); } + const CFWL_App* GetFWLApp() const { return m_pFWLApp.get(); } IFWL_AdapterTimerMgr* GetTimerMgr() const; CXFA_FontMgr* GetXFAFontMgr() const; IFWL_WidgetMgrDelegate* GetWidgetMgrDelegate() const { @@ -91,7 +91,7 @@ class CXFA_FFApp { // |m_pFWLApp| has to be released first, then |m_pFWLTheme| since the former // may refers to theme manager and the latter refers to font manager. std::unique_ptr<CXFA_FWLTheme> m_pFWLTheme; - std::unique_ptr<IFWL_App> m_pFWLApp; + std::unique_ptr<CFWL_App> m_pFWLApp; }; #endif // XFA_FXFA_XFA_FFAPP_H_ |