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

Side by Side Diff: fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h

Issue 2502653002: Cleanup remaining IFWL files for visiblity and usage. (Closed)
Patch Set: Review cleanup 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 unified diff | Download patch
« no previous file with comments | « no previous file | fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #ifndef FPDFSDK_FPDFXFA_CXFA_FWLADAPTERTIMERMGR_H_ 7 #ifndef FPDFSDK_FPDFXFA_CXFA_FWLADAPTERTIMERMGR_H_
8 #define FPDFSDK_FPDFXFA_CXFA_FWLADAPTERTIMERMGR_H_ 8 #define FPDFSDK_FPDFXFA_CXFA_FWLADAPTERTIMERMGR_H_
9 9
10 #include <vector> 10 #include <vector>
11 11
12 #include "fpdfsdk/fpdfxfa/cpdfxfa_context.h" 12 #include "fpdfsdk/fpdfxfa/cpdfxfa_context.h"
13 #include "xfa/fwl/core/ifwl_adaptertimermgr.h" 13 #include "xfa/fwl/core/ifwl_adaptertimermgr.h"
14 14
15 struct CFWL_TimerInfo; 15 struct CFWL_TimerInfo;
16 16
17 class CXFA_FWLAdapterTimerMgr : public IFWL_AdapterTimerMgr { 17 class CXFA_FWLAdapterTimerMgr : public IFWL_AdapterTimerMgr {
18 public: 18 public:
19 CXFA_FWLAdapterTimerMgr(CPDFSDK_FormFillEnvironment* pFormFillEnv) 19 CXFA_FWLAdapterTimerMgr(CPDFSDK_FormFillEnvironment* pFormFillEnv)
20 : m_pFormFillEnv(pFormFillEnv) {} 20 : m_pFormFillEnv(pFormFillEnv) {}
21 21
22 FWL_Error Start(IFWL_Timer* pTimer, 22 void Start(IFWL_Timer* pTimer,
23 uint32_t dwElapse, 23 uint32_t dwElapse,
24 bool bImmediately, 24 bool bImmediately,
25 IFWL_TimerInfo** pTimerInfo) override; 25 IFWL_TimerInfo** pTimerInfo) override;
26 FWL_Error Stop(IFWL_TimerInfo* pTimerInfo) override; 26 void Stop(IFWL_TimerInfo* pTimerInfo) override;
27 27
28 protected: 28 protected:
29 static void TimerProc(int32_t idEvent); 29 static void TimerProc(int32_t idEvent);
30 30
31 static std::vector<CFWL_TimerInfo*>* s_TimerArray; 31 static std::vector<CFWL_TimerInfo*>* s_TimerArray;
32 CPDFSDK_FormFillEnvironment* const m_pFormFillEnv; 32 CPDFSDK_FormFillEnvironment* const m_pFormFillEnv;
33 }; 33 };
34 34
35 struct CFWL_TimerInfo : public IFWL_TimerInfo { 35 struct CFWL_TimerInfo : public IFWL_TimerInfo {
36 CFWL_TimerInfo(IFWL_AdapterTimerMgr* mgr, int32_t event, IFWL_Timer* timer) 36 CFWL_TimerInfo(IFWL_AdapterTimerMgr* mgr, int32_t event, IFWL_Timer* timer)
37 : IFWL_TimerInfo(mgr), idEvent(event), pTimer(timer) {} 37 : IFWL_TimerInfo(mgr), idEvent(event), pTimer(timer) {}
38 38
39 int32_t idEvent; 39 int32_t idEvent;
40 IFWL_Timer* pTimer; 40 IFWL_Timer* pTimer;
41 }; 41 };
42 42
43 #endif // FPDFSDK_FPDFXFA_CXFA_FWLADAPTERTIMERMGR_H_ 43 #endif // FPDFSDK_FPDFXFA_CXFA_FWLADAPTERTIMERMGR_H_
OLDNEW
« no previous file with comments | « no previous file | fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698