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

Unified Diff: xfa/fwl/basewidget/fwl_tooltipctrlimp.h

Issue 2037573003: Remove FWL_HTIMER in favor of IWFL_TimerInfo (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Nits. Created 4 years, 6 months 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/basewidget/fwl_spinbuttonimp.cpp ('k') | xfa/fwl/basewidget/fwl_tooltipctrlimp.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/basewidget/fwl_tooltipctrlimp.h
diff --git a/xfa/fwl/basewidget/fwl_tooltipctrlimp.h b/xfa/fwl/basewidget/fwl_tooltipctrlimp.h
index 6d7af8dc89b8cc1a3af46a06c73464f78d7fefe9..c21a47ec073395b0a1f70f2d08555194d35895a0 100644
--- a/xfa/fwl/basewidget/fwl_tooltipctrlimp.h
+++ b/xfa/fwl/basewidget/fwl_tooltipctrlimp.h
@@ -44,10 +44,10 @@ class CFWL_ToolTipImp : public CFWL_FormImp {
class CFWL_ToolTipTimer : public IFWL_Timer {
public:
CFWL_ToolTipTimer() {}
- ~CFWL_ToolTipTimer() {}
+ explicit CFWL_ToolTipTimer(CFWL_ToolTipImp* pToolTip);
+ ~CFWL_ToolTipTimer() override {}
- CFWL_ToolTipTimer(CFWL_ToolTipImp* pToolTip);
- virtual int32_t Run(FWL_HTIMER hTimer);
+ void Run(IFWL_TimerInfo* pTimerInfo) override;
CFWL_ToolTipImp* m_pToolTip;
};
@@ -67,8 +67,8 @@ class CFWL_ToolTipImp : public CFWL_FormImp {
uint32_t m_dwTTOStyles;
int32_t m_iTTOAlign;
CFX_RectF m_rtAnchor;
- FWL_HTIMER m_hTimerShow;
- FWL_HTIMER m_hTimerHide;
+ IFWL_TimerInfo* m_pTimerInfoShow;
+ IFWL_TimerInfo* m_pTimerInfoHide;
CFWL_ToolTipTimer* m_pTimer;
CFWL_ToolTipTimer m_TimerShow;
CFWL_ToolTipTimer m_TimerHide;
« no previous file with comments | « xfa/fwl/basewidget/fwl_spinbuttonimp.cpp ('k') | xfa/fwl/basewidget/fwl_tooltipctrlimp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698