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

Side by Side Diff: xfa/include/fxfa/fxfa.h

Issue 1388023003: Merge to XFA: Make the vast majority of JS headers private to src/javascript. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 5 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 | « pdfium.gyp ('k') | xfa/include/fxfa/fxfa_objectacc.h » ('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 FXFA_H_ 7 #ifndef FXFA_H_
8 #define FXFA_H_ 8 #define FXFA_H_
9 9
10 class IFDE_XMLElement; 10 class CFX_Graphics;
11 class CPDF_Document;
11 class CXFA_Node; 12 class CXFA_Node;
12 class CXFA_NodeList; 13 class CXFA_NodeList;
13 class CXFA_WidgetAcc; 14 class CXFA_WidgetAcc;
15 class IFDE_XMLElement;
14 class IFWL_AdapterTimerMgr; 16 class IFWL_AdapterTimerMgr;
15 class IFX_Font; 17 class IFX_Font;
16 class CFX_Graphics; 18 class IXFA_App;
17 class IXFA_AppProvider; 19 class IXFA_AppProvider;
18 class IXFA_App; 20 class IXFA_ChecksumContext;
21 class IXFA_DocHandler;
22 class IXFA_DocProvider;
23 class IXFA_DocView;
19 class IXFA_FontMgr; 24 class IXFA_FontMgr;
20 class IXFA_DocProvider; 25 class IXFA_MenuHandler;
21 class IXFA_DocHandler; 26 class IXFA_PageView;
22 class IXFA_DocView;
23 class IXFA_PageViewRender; 27 class IXFA_PageViewRender;
24 class IXFA_PageView; 28 class IXFA_WidgetAccIterator;
25 class IXFA_WidgetHandler; 29 class IXFA_WidgetHandler;
26 class IXFA_WidgetIterator; 30 class IXFA_WidgetIterator;
27 class IXFA_MenuHandler;
28 class IXFA_ChecksumContext;
29 class IXFA_WidgetAccIterator;
30 31
31 class IXFA_Doc { 32 class IXFA_Doc {
32 public: 33 public:
33 virtual ~IXFA_Doc() {} 34 virtual ~IXFA_Doc() {}
34 35
35 protected: 36 protected:
36 IXFA_Doc() {} 37 IXFA_Doc() {}
37 }; 38 };
38 39
39 class IXFA_Widget { 40 class IXFA_Widget {
(...skipping 795 matching lines...) Expand 10 before | Expand all | Expand 10 after
835 size_t size = 0) = 0; 836 size_t size = 0) = 0;
836 virtual void FinishChecksum() = 0; 837 virtual void FinishChecksum() = 0;
837 virtual void GetChecksum(CFX_ByteString& bsChecksum) = 0; 838 virtual void GetChecksum(CFX_ByteString& bsChecksum) = 0;
838 839
839 protected: 840 protected:
840 ~IXFA_ChecksumContext() {} 841 ~IXFA_ChecksumContext() {}
841 }; 842 };
842 IXFA_ChecksumContext* XFA_Checksum_Create(); 843 IXFA_ChecksumContext* XFA_Checksum_Create();
843 844
844 #endif // FXFA_H_ 845 #endif // FXFA_H_
OLDNEW
« no previous file with comments | « pdfium.gyp ('k') | xfa/include/fxfa/fxfa_objectacc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698