Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(394)

Unified Diff: xfa/fwl/core/ifwl_caret.h

Issue 2526513002: Rename IFWL_Timer and IFWL_TimerInfo (Closed)
Patch Set: Review feedback Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « xfa/fwl/core/ifwl_adaptertimermgr.h ('k') | xfa/fwl/core/ifwl_caret.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/core/ifwl_caret.h
diff --git a/xfa/fwl/core/ifwl_caret.h b/xfa/fwl/core/ifwl_caret.h
index d75a6621759f3b183f6e81055f40aa939653e080..57d0025a6b8220dcb593a13e26ab982328b92e6b 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_
« no previous file with comments | « xfa/fwl/core/ifwl_adaptertimermgr.h ('k') | xfa/fwl/core/ifwl_caret.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698