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

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

Issue 2385423004: Rename fpdfsdk/fpdfxfa files to match contents (Closed)
Patch Set: Created 4 years, 2 months 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 | « fpdfsdk/fpdfxfa/cpdfxfa_page.cpp ('k') | 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_FPDFXFA_UTIL_H_ 7 #ifndef FPDFSDK_FPDFXFA_CXFA_FWLADAPTERTIMERMGR_H_
8 #define FPDFSDK_FPDFXFA_FPDFXFA_UTIL_H_ 8 #define FPDFSDK_FPDFXFA_CXFA_FWLADAPTERTIMERMGR_H_
9 9
10 #include <vector> 10 #include <vector>
11 11
12 #include "fpdfsdk/fpdfxfa/fpdfxfa_doc.h" 12 #include "fpdfsdk/fpdfxfa/cpdfxfa_document.h"
13 #include "xfa/fwl/core/ifwl_adaptertimermgr.h" 13 #include "xfa/fwl/core/ifwl_adaptertimermgr.h"
14 14
15 #define JS_STR_VIEWERTYPE_STANDARD L"Exchange" 15 #define JS_STR_VIEWERTYPE_STANDARD L"Exchange"
16 #define JS_STR_LANGUANGE L"ENU" 16 #define JS_STR_LANGUANGE L"ENU"
17 #define JS_STR_VIEWERVARIATION L"Full" 17 #define JS_STR_VIEWERVARIATION L"Full"
18 #define JS_STR_VIEWERVERSION_XFA L"11" 18 #define JS_STR_VIEWERVERSION_XFA L"11"
19 19
20 struct CFWL_TimerInfo; 20 struct CFWL_TimerInfo;
21 21
22 class CXFA_FWLAdapterTimerMgr : public IFWL_AdapterTimerMgr { 22 class CXFA_FWLAdapterTimerMgr : public IFWL_AdapterTimerMgr {
(...skipping 15 matching lines...) Expand all
38 38
39 struct CFWL_TimerInfo : public IFWL_TimerInfo { 39 struct CFWL_TimerInfo : public IFWL_TimerInfo {
40 CFWL_TimerInfo() : pTimer(nullptr) {} 40 CFWL_TimerInfo() : pTimer(nullptr) {}
41 CFWL_TimerInfo(int32_t event, IFWL_Timer* timer) 41 CFWL_TimerInfo(int32_t event, IFWL_Timer* timer)
42 : idEvent(event), pTimer(timer) {} 42 : idEvent(event), pTimer(timer) {}
43 43
44 int32_t idEvent; 44 int32_t idEvent;
45 IFWL_Timer* pTimer; 45 IFWL_Timer* pTimer;
46 }; 46 };
47 47
48 #endif // FPDFSDK_FPDFXFA_FPDFXFA_UTIL_H_ 48 #endif // FPDFSDK_FPDFXFA_CXFA_FWLADAPTERTIMERMGR_H_
OLDNEW
« no previous file with comments | « fpdfsdk/fpdfxfa/cpdfxfa_page.cpp ('k') | fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698