diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-04-07 15:26:59 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-04-07 15:26:59 -0700 |
commit | 0415b381008dd0bcf2ed5da6f1371f1df396bc07 (patch) | |
tree | 35ee8a601e09f0c88ac5c32d7f668347fe20170c /fpdfsdk/include/javascript/JS_EventHandler.h | |
parent | a6d40307bcc979214dd97fdae3d58dcc5ffa315a (diff) | |
download | pdfium-0415b381008dd0bcf2ed5da6f1371f1df396bc07.tar.xz |
Fix (nearly all) IWYU in fpdfskd/include/javascript/ headers.
Move some typedefs for v8 types into fxjs_v8.h wrapper to
avoid circular inclusions. Also delete JS_Module.h, as no
other file includes it.
BUG=https://code.google.com/p/pdfium/issues/detail?id=66
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1060133002
Diffstat (limited to 'fpdfsdk/include/javascript/JS_EventHandler.h')
-rw-r--r-- | fpdfsdk/include/javascript/JS_EventHandler.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fpdfsdk/include/javascript/JS_EventHandler.h b/fpdfsdk/include/javascript/JS_EventHandler.h index d16933aeef..a6736d319b 100644 --- a/fpdfsdk/include/javascript/JS_EventHandler.h +++ b/fpdfsdk/include/javascript/JS_EventHandler.h @@ -7,7 +7,14 @@ #ifndef _JS_EVENTHANDLER_H_ #define _JS_EVENTHANDLER_H_ +#include "../../../core/include/fxcrt/fx_string.h" +#include "../../../core/include/fxcrt/fx_system.h" + class CJS_Context; +class CPDFSDK_Annot; +class CPDFSDK_Document; +class CPDF_Bookmark; +class CPDF_FormField; class Field; enum JS_EVENT_T |