diff options
Diffstat (limited to 'xfa/fwl/cfwl_timer.h')
-rw-r--r-- | xfa/fwl/cfwl_timer.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xfa/fwl/cfwl_timer.h b/xfa/fwl/cfwl_timer.h index da1b4437e2..355ea69d67 100644 --- a/xfa/fwl/cfwl_timer.h +++ b/xfa/fwl/cfwl_timer.h @@ -7,11 +7,14 @@ #ifndef XFA_FWL_CFWL_TIMER_H_ #define XFA_FWL_CFWL_TIMER_H_ +#include <memory> + #include "core/fxcrt/fx_system.h" #include "core/fxcrt/unowned_ptr.h" class CFWL_TimerInfo; class CFWL_Widget; +class IFWL_AdapterTimerMgr; class CFWL_Timer { public: @@ -23,6 +26,7 @@ class CFWL_Timer { protected: UnownedPtr<CFWL_Widget> m_pWidget; + std::unique_ptr<IFWL_AdapterTimerMgr> m_pTimeMgrAdapter; }; #endif // XFA_FWL_CFWL_TIMER_H_ |