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 "xfa/fwl/core/fwl_appimp.h" | |
8 #include "xfa/fwl/core/ifwl_adaptertimermgr.h" | 7 #include "xfa/fwl/core/ifwl_adaptertimermgr.h" |
9 #include "xfa/fwl/core/ifwl_app.h" | 8 #include "xfa/fwl/core/ifwl_app.h" |
10 #include "xfa/fwl/core/ifwl_timer.h" | 9 #include "xfa/fwl/core/ifwl_timer.h" |
11 #include "xfa/fxfa/xfa_ffapp.h" | 10 #include "xfa/fxfa/xfa_ffapp.h" |
12 | 11 |
13 IFWL_TimerInfo* IFWL_Timer::StartTimer(uint32_t dwElapse, bool bImmediately) { | 12 IFWL_TimerInfo* IFWL_Timer::StartTimer(uint32_t dwElapse, bool bImmediately) { |
14 CXFA_FFApp* pAdapterNative = FWL_GetAdapterNative(); | 13 CXFA_FFApp* pAdapterNative = FWL_GetAdapterNative(); |
15 if (!pAdapterNative) | 14 if (!pAdapterNative) |
16 return nullptr; | 15 return nullptr; |
17 | 16 |
(...skipping 10 matching lines...) Expand all Loading... |
28 CXFA_FFApp* pAdapterNative = FWL_GetAdapterNative(); | 27 CXFA_FFApp* pAdapterNative = FWL_GetAdapterNative(); |
29 if (!pAdapterNative) | 28 if (!pAdapterNative) |
30 return FWL_Error::Indefinite; | 29 return FWL_Error::Indefinite; |
31 | 30 |
32 IFWL_AdapterTimerMgr* pAdapterTimerMgr = pAdapterNative->GetTimerMgr(); | 31 IFWL_AdapterTimerMgr* pAdapterTimerMgr = pAdapterNative->GetTimerMgr(); |
33 if (!pAdapterTimerMgr) | 32 if (!pAdapterTimerMgr) |
34 return FWL_Error::Indefinite; | 33 return FWL_Error::Indefinite; |
35 | 34 |
36 return pAdapterTimerMgr->Stop(this); | 35 return pAdapterTimerMgr->Stop(this); |
37 } | 36 } |
OLD | NEW |