| 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_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 "fsdk_actionhandler.h" | 13 #include "fsdk_actionhandler.h" |
| 14 #include "fsdk_annothandler.h" | 14 #include "fsdk_annothandler.h" |
| 15 #include "fsdk_baseannot.h" | 15 #include "fsdk_baseannot.h" |
| 16 #include "fsdk_baseform.h" | 16 #include "fsdk_baseform.h" |
| 17 #include "fsdk_common.h" | 17 #include "fsdk_common.h" |
| 18 #include "fsdk_define.h" | 18 #include "fsdk_define.h" |
| 19 #include "fx_systemhandler.h" | 19 #include "fx_systemhandler.h" |
| 20 #include "javascript/IJavaScript.h" | 20 #include "javascript/IJavaScript.h" |
| 21 #include "public/fpdf_formfill.h" | 21 #include "public/fpdf_formfill.h" |
| 22 #include "public/fpdf_fwlevent.h" // cross platform keycode and events define. | 22 #include "public/fpdf_fwlevent.h" // cross platform keycode and events define. |
| (...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_ |
| OLD | NEW |