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_caret.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_caret.h')
-rw-r--r-- | xfa/fwl/core/ifwl_caret.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fwl/core/ifwl_caret.h b/xfa/fwl/core/ifwl_caret.h index d75a662175..57d0025a6b 100644 --- a/xfa/fwl/core/ifwl_caret.h +++ b/xfa/fwl/core/ifwl_caret.h @@ -9,7 +9,7 @@ #include <memory> -#include "xfa/fwl/core/ifwl_timer.h" +#include "xfa/fwl/core/cfwl_timer.h" #include "xfa/fwl/core/ifwl_widget.h" #include "xfa/fxgraphics/cfx_color.h" @@ -36,12 +36,12 @@ class IFWL_Caret : public IFWL_Widget { void ShowCaret(bool bFlag = true); private: - class Timer : public IFWL_Timer { + class Timer : public CFWL_Timer { public: explicit Timer(IFWL_Caret* pCaret); ~Timer() override {} - void Run(IFWL_TimerInfo* hTimer) override; + void Run(CFWL_TimerInfo* hTimer) override; }; friend class IFWL_Caret::Timer; @@ -50,7 +50,7 @@ class IFWL_Caret : public IFWL_Widget { const CFX_Matrix* pMatrix); std::unique_ptr<IFWL_Caret::Timer> m_pTimer; - IFWL_TimerInfo* m_pTimerInfo; // not owned. + CFWL_TimerInfo* m_pTimerInfo; // not owned. }; #endif // XFA_FWL_CORE_IFWL_CARET_H_ |