Chromium Code Reviews| 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 PUBLIC_FPDF_FORMFILL_H_ | 7 #ifndef PUBLIC_FPDF_FORMFILL_H_ |
| 8 #define PUBLIC_FPDF_FORMFILL_H_ | 8 #define PUBLIC_FPDF_FORMFILL_H_ |
| 9 | 9 |
| 10 #include "fpdfview.h" | 10 #include "fpdfview.h" |
| (...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 760 #define FPDFDOC_AACTION_WC \ | 760 #define FPDFDOC_AACTION_WC \ |
| 761 0x10 // WC, before closing document, JavaScript action. | 761 0x10 // WC, before closing document, JavaScript action. |
| 762 #define FPDFDOC_AACTION_WS \ | 762 #define FPDFDOC_AACTION_WS \ |
| 763 0x11 // WS, before saving document, JavaScript action. | 763 0x11 // WS, before saving document, JavaScript action. |
| 764 #define FPDFDOC_AACTION_DS 0x12 // DS, after saving document, JavaScript | 764 #define FPDFDOC_AACTION_DS 0x12 // DS, after saving document, JavaScript |
| 765 // action. | 765 // action. |
| 766 #define FPDFDOC_AACTION_WP \ | 766 #define FPDFDOC_AACTION_WP \ |
| 767 0x13 // WP, before printing document, JavaScript action. | 767 0x13 // WP, before printing document, JavaScript action. |
| 768 #define FPDFDOC_AACTION_DP \ | 768 #define FPDFDOC_AACTION_DP \ |
| 769 0x14 // DP, after printing document, JavaScript action. | 769 0x14 // DP, after printing document, JavaScript action. |
| 770 | |
| 770 /** | 771 /** |
| 771 * Function: FORM_DoDocumentAAction | 772 * Function: FORM_DoDocumentAAction |
|
Lei Zhang
2015/08/06 21:21:25
Shouldn't this have 1 more space?
/**
* blah
*/
Nico
2015/08/06 21:28:36
I think clang-format doesn't touch the relative la
Lei Zhang
2015/08/06 21:30:40
Ok, no worries.
| |
| 772 * This method is required for performing the document's | 773 * This method is required for performing the document's |
| 773 *additional-action. | 774 *additional-action. |
| 774 * Parameters: | 775 * Parameters: |
| 775 * hHandle - Handle to the form fill module. Returned by | 776 * hHandle - Handle to the form fill module. Returned by |
| 776 *FPDFDOC_InitFormFillEnvironment. | 777 *FPDFDOC_InitFormFillEnvironment. |
| 777 * aaType - The type of the additional-actions which defined | 778 * aaType - The type of the additional-actions which defined |
| 778 *above. | 779 *above. |
| 779 * Return Value: | 780 * Return Value: |
| 780 * NONE | 781 * NONE |
| 781 * Comments: | 782 * Comments: |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1078 int size_x, | 1079 int size_x, |
| 1079 int size_y, | 1080 int size_y, |
| 1080 int rotate, | 1081 int rotate, |
| 1081 int flags); | 1082 int flags); |
| 1082 | 1083 |
| 1083 #ifdef __cplusplus | 1084 #ifdef __cplusplus |
| 1084 } | 1085 } |
| 1085 #endif | 1086 #endif |
| 1086 | 1087 |
| 1087 #endif // PUBLIC_FPDF_FORMFILL_H_ | 1088 #endif // PUBLIC_FPDF_FORMFILL_H_ |
| OLD | NEW |