OLD | NEW |
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 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_util.h" | 7 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_util.h" |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "fpdfsdk/include/fsdk_define.h" | 11 #include "fpdfsdk/include/fsdk_define.h" |
12 #include "fpdfsdk/include/fsdk_mgr.h" | 12 #include "fpdfsdk/include/fsdk_mgr.h" |
13 | 13 |
14 std::vector<CFWL_TimerInfo*>* CXFA_FWLAdapterTimerMgr::s_TimerArray = nullptr; | 14 std::vector<CFWL_TimerInfo*>* CXFA_FWLAdapterTimerMgr::s_TimerArray = nullptr; |
15 | 15 |
16 FWL_ERR CXFA_FWLAdapterTimerMgr::Start(IFWL_Timer* pTimer, | 16 FWL_ERR CXFA_FWLAdapterTimerMgr::Start(IFWL_Timer* pTimer, |
17 FX_DWORD dwElapse, | 17 uint32_t dwElapse, |
18 FWL_HTIMER& hTimer, | 18 FWL_HTIMER& hTimer, |
19 FX_BOOL bImmediately) { | 19 FX_BOOL bImmediately) { |
20 if (!m_pEnv) | 20 if (!m_pEnv) |
21 return FWL_ERR_Indefinite; | 21 return FWL_ERR_Indefinite; |
22 | 22 |
23 int32_t id_event = m_pEnv->FFI_SetTimer(dwElapse, TimerProc); | 23 int32_t id_event = m_pEnv->FFI_SetTimer(dwElapse, TimerProc); |
24 if (!s_TimerArray) | 24 if (!s_TimerArray) |
25 s_TimerArray = new std::vector<CFWL_TimerInfo*>; | 25 s_TimerArray = new std::vector<CFWL_TimerInfo*>; |
26 s_TimerArray->push_back(new CFWL_TimerInfo(id_event, pTimer)); | 26 s_TimerArray->push_back(new CFWL_TimerInfo(id_event, pTimer)); |
27 hTimer = reinterpret_cast<FWL_HTIMER>(s_TimerArray->back()); | 27 hTimer = reinterpret_cast<FWL_HTIMER>(s_TimerArray->back()); |
(...skipping 21 matching lines...) Expand all Loading... |
49 if (!s_TimerArray) | 49 if (!s_TimerArray) |
50 return; | 50 return; |
51 | 51 |
52 for (CFWL_TimerInfo* pInfo : *s_TimerArray) { | 52 for (CFWL_TimerInfo* pInfo : *s_TimerArray) { |
53 if (pInfo->idEvent == idEvent) { | 53 if (pInfo->idEvent == idEvent) { |
54 pInfo->pTimer->Run(reinterpret_cast<FWL_HTIMER>(pInfo)); | 54 pInfo->pTimer->Run(reinterpret_cast<FWL_HTIMER>(pInfo)); |
55 break; | 55 break; |
56 } | 56 } |
57 } | 57 } |
58 } | 58 } |
OLD | NEW |