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

Side by Side Diff: fpdfsdk/include/fsdk_mgr.h

Issue 1434543003: Merge to XFA: Fix all relative includes to third_party. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Fix XFA Created 5 years, 1 month 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
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_INCLUDE_FSDK_MGR_H_ 7 #ifndef FPDFSDK_INCLUDE_FSDK_MGR_H_
8 #define FPDFSDK_INCLUDE_FSDK_MGR_H_ 8 #define FPDFSDK_INCLUDE_FSDK_MGR_H_
9 9
10 #include <map> 10 #include <map>
11 11
12 #include "../../core/include/fpdftext/fpdf_text.h" 12 #include "../../core/include/fpdftext/fpdf_text.h"
13 #include "../../public/fpdf_formfill.h" 13 #include "../../public/fpdf_formfill.h"
14 #include "../../public/fpdf_fwlevent.h" // cross platform keycode and events de fine. 14 #include "../../public/fpdf_fwlevent.h" // cross platform keycode and events de fine.
15 #include "../../third_party/base/nonstd_unique_ptr.h" 15 #include "fpdfxfa/fpdfxfa_doc.h"
16 #include "fpdfxfa/fpdfxfa_page.h"
17 #include "fsdk_actionhandler.h"
18 #include "fsdk_annothandler.h"
19 #include "fsdk_baseannot.h"
20 #include "fsdk_baseform.h"
16 #include "fsdk_common.h" 21 #include "fsdk_common.h"
17 #include "fsdk_define.h" 22 #include "fsdk_define.h"
18 #include "fx_systemhandler.h" 23 #include "fx_systemhandler.h"
19 #include "fpdfxfa/fpdfxfa_doc.h"
20 #include "fpdfxfa/fpdfxfa_page.h"
21 #include "fsdk_baseannot.h"
22 #include "fsdk_baseform.h"
23 #include "fsdk_annothandler.h"
24 #include "fsdk_actionhandler.h"
25 #include "javascript/IJavaScript.h" 24 #include "javascript/IJavaScript.h"
25 #include "third_party/base/nonstd_unique_ptr.h"
26 26
27 class CFFL_IFormFiller; 27 class CFFL_IFormFiller;
28 class CPDFSDK_ActionHandler; 28 class CPDFSDK_ActionHandler;
29 class CPDFSDK_Annot; 29 class CPDFSDK_Annot;
30 class CPDFSDK_Document; 30 class CPDFSDK_Document;
31 class CPDFSDK_InterForm; 31 class CPDFSDK_InterForm;
32 class CPDFSDK_PageView; 32 class CPDFSDK_PageView;
33 class CPDFSDK_Widget; 33 class CPDFSDK_Widget;
34 class IFX_SystemHandler; 34 class IFX_SystemHandler;
35 35
(...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after
677 } 677 }
678 678
679 if (nStartPos < m) 679 if (nStartPos < m)
680 QuickSort(nStartPos, m, bAscend, pCompare); 680 QuickSort(nStartPos, m, bAscend, pCompare);
681 if (nStopPos > m) 681 if (nStopPos > m)
682 QuickSort(m, nStopPos, bAscend, pCompare); 682 QuickSort(m, nStopPos, bAscend, pCompare);
683 } 683 }
684 }; 684 };
685 685
686 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_ 686 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_
OLDNEW
« no previous file with comments | « fpdfsdk/include/fsdk_actionhandler.h ('k') | fpdfsdk/src/fpdfformfill.cpp » ('j') | xfa.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698