diff options
author | dsinclair <dsinclair@chromium.org> | 2016-11-22 15:42:07 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-22 15:42:07 -0800 |
commit | d64372989fcb4e5af66f437ad7b8be343cb1aa67 (patch) | |
tree | d95ffcf46b3990723ce08a8207d3f6af3c3c1b98 /xfa/fwl/core/ifwl_scrollbar.h | |
parent | 5048731cf0b1221a81e76d7f6e95f24159bb87e2 (diff) | |
download | pdfium-d64372989fcb4e5af66f437ad7b8be343cb1aa67.tar.xz |
Rename IFWL_Timer and IFWL_TimerInfo
These twho files are not interfaces. Renamed to be CFWL to signify they are
concrete implementations.
Review-Url: https://codereview.chromium.org/2526513002
Diffstat (limited to 'xfa/fwl/core/ifwl_scrollbar.h')
-rw-r--r-- | xfa/fwl/core/ifwl_scrollbar.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fwl/core/ifwl_scrollbar.h b/xfa/fwl/core/ifwl_scrollbar.h index 06306c3c74..b6f2b02732 100644 --- a/xfa/fwl/core/ifwl_scrollbar.h +++ b/xfa/fwl/core/ifwl_scrollbar.h @@ -11,8 +11,8 @@ #include "core/fxcrt/fx_system.h" #include "xfa/fwl/core/cfwl_evtscroll.h" +#include "xfa/fwl/core/cfwl_timer.h" #include "xfa/fwl/core/cfwl_widgetproperties.h" -#include "xfa/fwl/core/ifwl_timer.h" #include "xfa/fwl/core/ifwl_widget.h" class IFWL_Widget; @@ -56,12 +56,12 @@ class IFWL_ScrollBar : public IFWL_Widget { void SetTrackPos(FX_FLOAT fTrackPos); private: - class Timer : public IFWL_Timer { + class Timer : public CFWL_Timer { public: explicit Timer(IFWL_ScrollBar* pToolTip); ~Timer() override {} - void Run(IFWL_TimerInfo* pTimerInfo) override; + void Run(CFWL_TimerInfo* pTimerInfo) override; }; friend class IFWL_ScrollBar::Timer; @@ -118,7 +118,7 @@ class IFWL_ScrollBar : public IFWL_Widget { void DoMouseLeave(int32_t iItem, const CFX_RectF& rtItem, int32_t& iState); void DoMouseHover(int32_t iItem, const CFX_RectF& rtItem, int32_t& iState); - IFWL_TimerInfo* m_pTimerInfo; + CFWL_TimerInfo* m_pTimerInfo; FX_FLOAT m_fRangeMin; FX_FLOAT m_fRangeMax; FX_FLOAT m_fPageSize; |