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/fwl/core/ifwl_widget.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/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 a7ae8ce590..230ea666d9 100644 --- a/xfa/fwl/core/ifwl_widget.h +++ b/xfa/fwl/core/ifwl_widget.h @@ -57,7 +57,7 @@ class CFWL_MsgKey; class CFWL_Widget; class CFWL_WidgetProperties; class CFWL_WidgetMgr; -class IFWL_App; +class CFWL_App; class IFWL_ThemeProvider; class IFWL_Widget; enum class FWL_Type; @@ -118,7 +118,7 @@ class IFWL_Widget : public IFWL_WidgetDelegate { return m_pDelegate ? m_pDelegate : this; } - const IFWL_App* GetOwnerApp() const { return m_pOwnerApp; } + const CFWL_App* GetOwnerApp() const { return m_pOwnerApp; } uint32_t GetEventKey() const { return m_nEventKey; } void SetEventKey(uint32_t key) { m_nEventKey = key; } @@ -133,7 +133,7 @@ class IFWL_Widget : public IFWL_WidgetDelegate { void Repaint(const CFX_RectF* pRect = nullptr); protected: - IFWL_Widget(const IFWL_App* app, + IFWL_Widget(const CFWL_App* app, std::unique_ptr<CFWL_WidgetProperties> properties, IFWL_Widget* pOuter); @@ -175,7 +175,7 @@ class IFWL_Widget : public IFWL_WidgetDelegate { IFWL_ThemeProvider* pTheme, const CFX_Matrix* pMatrix = nullptr); - const IFWL_App* const m_pOwnerApp; + const CFWL_App* const m_pOwnerApp; CFWL_WidgetMgr* const m_pWidgetMgr; std::unique_ptr<CFWL_WidgetProperties> m_pProperties; IFWL_Widget* m_pOuter; |