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/ifwl_adaptertimermgr.h" | 7 #include "xfa/fwl/core/ifwl_adaptertimermgr.h" |
8 #include "xfa/fwl/core/ifwl_app.h" | 8 #include "xfa/fwl/core/ifwl_app.h" |
9 #include "xfa/fwl/core/ifwl_timer.h" | 9 #include "xfa/fwl/core/ifwl_timer.h" |
10 #include "xfa/fxfa/xfa_ffapp.h" | 10 #include "xfa/fxfa/xfa_ffapp.h" |
(...skipping 16 matching lines...) Expand all Loading... |
27 CXFA_FFApp* pAdapterNative = FWL_GetAdapterNative(); | 27 CXFA_FFApp* pAdapterNative = FWL_GetAdapterNative(); |
28 if (!pAdapterNative) | 28 if (!pAdapterNative) |
29 return FWL_Error::Indefinite; | 29 return FWL_Error::Indefinite; |
30 | 30 |
31 IFWL_AdapterTimerMgr* pAdapterTimerMgr = pAdapterNative->GetTimerMgr(); | 31 IFWL_AdapterTimerMgr* pAdapterTimerMgr = pAdapterNative->GetTimerMgr(); |
32 if (!pAdapterTimerMgr) | 32 if (!pAdapterTimerMgr) |
33 return FWL_Error::Indefinite; | 33 return FWL_Error::Indefinite; |
34 | 34 |
35 return pAdapterTimerMgr->Stop(this); | 35 return pAdapterTimerMgr->Stop(this); |
36 } | 36 } |
OLD | NEW |