diff options
author | dsinclair <dsinclair@chromium.org> | 2016-11-10 10:25:32 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-10 10:25:32 -0800 |
commit | 12f72bfc06198fcddf86f366adbbdeb152163b0e (patch) | |
tree | 61c3b3859382950e75fc8044639d3e9cea10cf16 /xfa/fwl/core/ifwl_timer.h | |
parent | be6b14899381d31628887d3cf4af086a3acb7eef (diff) | |
download | pdfium-12f72bfc06198fcddf86f366adbbdeb152163b0e.tar.xz |
Continue cleaning IFWL classes
More work cleaning up visiblity, unused methods and return values.
Review-Url: https://codereview.chromium.org/2489013002
Diffstat (limited to 'xfa/fwl/core/ifwl_timer.h')
-rw-r--r-- | xfa/fwl/core/ifwl_timer.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/xfa/fwl/core/ifwl_timer.h b/xfa/fwl/core/ifwl_timer.h index 7562085060..71fe6bf188 100644 --- a/xfa/fwl/core/ifwl_timer.h +++ b/xfa/fwl/core/ifwl_timer.h @@ -8,7 +8,6 @@ #define XFA_FWL_CORE_IFWL_TIMER_H_ #include "core/fxcrt/fx_system.h" -#include "xfa/fwl/core/fwl_error.h" class IFWL_AdapterTimerMgr; class IFWL_TimerInfo; @@ -33,9 +32,9 @@ class IFWL_TimerInfo { } virtual ~IFWL_TimerInfo() {} - FWL_Error StopTimer(); + void StopTimer(); - protected: + private: IFWL_AdapterTimerMgr* m_pMgr; // Not owned. }; |