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 #ifndef FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_UTIL_H_ | 7 #ifndef FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_UTIL_H_ |
8 #define FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_UTIL_H_ | 8 #define FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_UTIL_H_ |
9 | 9 |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h" | |
dsinclair
2016/02/18 16:22:58
Had to add this as CPDFDoc_Environment could no lo
Tom Sepez
2016/02/18 19:39:57
Yup. Moving these around often exposes "Include W
| |
12 #include "xfa/include/fwl/adapter/fwl_adaptertimermgr.h" | 13 #include "xfa/include/fwl/adapter/fwl_adaptertimermgr.h" |
13 | 14 |
14 #define JS_STR_VIEWERTYPE_STANDARD L"Exchange" | 15 #define JS_STR_VIEWERTYPE_STANDARD L"Exchange" |
15 #define JS_STR_LANGUANGE L"ENU" | 16 #define JS_STR_LANGUANGE L"ENU" |
16 #define JS_STR_VIEWERVARIATION L"Full" | 17 #define JS_STR_VIEWERVARIATION L"Full" |
17 #define JS_STR_VIEWERVERSION_XFA L"11" | 18 #define JS_STR_VIEWERVERSION_XFA L"11" |
18 | 19 |
19 class CFWL_TimerInfo; | 20 class CFWL_TimerInfo; |
20 | 21 |
21 class CXFA_FWLAdapterTimerMgr : public IFWL_AdapterTimerMgr { | 22 class CXFA_FWLAdapterTimerMgr : public IFWL_AdapterTimerMgr { |
(...skipping 16 matching lines...) Expand all Loading... | |
38 public: | 39 public: |
39 CFWL_TimerInfo() : pTimer(nullptr) {} | 40 CFWL_TimerInfo() : pTimer(nullptr) {} |
40 CFWL_TimerInfo(uint32_t event, IFWL_Timer* timer) | 41 CFWL_TimerInfo(uint32_t event, IFWL_Timer* timer) |
41 : uIDEvent(event), pTimer(timer) {} | 42 : uIDEvent(event), pTimer(timer) {} |
42 | 43 |
43 uint32_t uIDEvent; | 44 uint32_t uIDEvent; |
44 IFWL_Timer* pTimer; | 45 IFWL_Timer* pTimer; |
45 }; | 46 }; |
46 | 47 |
47 #endif // FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_UTIL_H_ | 48 #endif // FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_UTIL_H_ |
OLD | NEW |