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

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

Issue 1425153006: Fix all relative includes to third_party. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: rebase 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
« no previous file with comments | « fpdfsdk/include/fsdk_actionhandler.h ('k') | fpdfsdk/src/fpdfformfill.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_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 "fsdk_actionhandler.h"
16 #include "fsdk_annothandler.h"
17 #include "fsdk_baseannot.h"
18 #include "fsdk_baseform.h"
16 #include "fsdk_common.h" 19 #include "fsdk_common.h"
17 #include "fsdk_define.h" 20 #include "fsdk_define.h"
18 #include "fx_systemhandler.h" 21 #include "fx_systemhandler.h"
19 #include "fsdk_baseannot.h"
20 #include "fsdk_baseform.h"
21 #include "fsdk_annothandler.h"
22 #include "fsdk_actionhandler.h"
23 #include "javascript/IJavaScript.h" 22 #include "javascript/IJavaScript.h"
23 #include "third_party/base/nonstd_unique_ptr.h"
24 24
25 class CFFL_IFormFiller; 25 class CFFL_IFormFiller;
26 class CPDFSDK_ActionHandler; 26 class CPDFSDK_ActionHandler;
27 class CPDFSDK_Annot; 27 class CPDFSDK_Annot;
28 class CPDFSDK_Document; 28 class CPDFSDK_Document;
29 class CPDFSDK_InterForm; 29 class CPDFSDK_InterForm;
30 class CPDFSDK_PageView; 30 class CPDFSDK_PageView;
31 class CPDFSDK_Widget; 31 class CPDFSDK_Widget;
32 class IFX_SystemHandler; 32 class IFX_SystemHandler;
33 33
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 } 428 }
429 429
430 if (nStartPos < m) 430 if (nStartPos < m)
431 QuickSort(nStartPos, m, bAscend, pCompare); 431 QuickSort(nStartPos, m, bAscend, pCompare);
432 if (nStopPos > m) 432 if (nStopPos > m)
433 QuickSort(m, nStopPos, bAscend, pCompare); 433 QuickSort(m, nStopPos, bAscend, pCompare);
434 } 434 }
435 }; 435 };
436 436
437 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_ 437 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_
OLDNEW
« no previous file with comments | « fpdfsdk/include/fsdk_actionhandler.h ('k') | fpdfsdk/src/fpdfformfill.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698