• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2016 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 
7 #ifndef XFA_FWL_CFWL_TIMERINFO_H_
8 #define XFA_FWL_CFWL_TIMERINFO_H_
9 
10 #include "core/fxcrt/fx_system.h"
11 #include "core/fxcrt/unowned_ptr.h"
12 
13 class IFWL_AdapterTimerMgr;
14 
15 class CFWL_TimerInfo {
16  public:
17   explicit CFWL_TimerInfo(IFWL_AdapterTimerMgr* mgr);
18   virtual ~CFWL_TimerInfo();
19 
20   void StopTimer();
21 
22  private:
23   UnownedPtr<IFWL_AdapterTimerMgr> m_pMgr;
24 };
25 
26 #endif  // XFA_FWL_CFWL_TIMERINFO_H_
27