diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-04-08 16:08:00 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-04-08 16:08:00 -0700 |
commit | 45a3d338e60a7ae8c58bd2f3122ef4da01c4e051 (patch) | |
tree | 82d956e82b4c30a46d7ec5fc3bee8d5469d7055f /fpdfsdk/include/formfiller/FFL_Notify.h | |
parent | d80a434d7aa1ea6138e17aed2117c2eac8f72ce3 (diff) | |
download | pdfium-45a3d338e60a7ae8c58bd2f3122ef4da01c4e051.tar.xz |
Fix IWYU in formfiller/ directory.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1066253002
Diffstat (limited to 'fpdfsdk/include/formfiller/FFL_Notify.h')
-rw-r--r-- | fpdfsdk/include/formfiller/FFL_Notify.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/fpdfsdk/include/formfiller/FFL_Notify.h b/fpdfsdk/include/formfiller/FFL_Notify.h index cabc1aa113..1828d97983 100644 --- a/fpdfsdk/include/formfiller/FFL_Notify.h +++ b/fpdfsdk/include/formfiller/FFL_Notify.h @@ -4,10 +4,14 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#if !defined(_FFL_NOTIFY_H_) +#ifndef _FFL_NOTIFY_H_ #define _FFL_NOTIFY_H_ +#include "../../../core/include/fpdfdoc/fpdf_doc.h" +#include "../../../core/include/fxcrt/fx_string.h" + class CFFL_FormFiller; +class CPDF_FormField; class CFFL_Notify { @@ -38,7 +42,6 @@ public: FX_BOOL IsNotifying() const {return m_nNotifyFlag > 0;} private: -// CReader_InterForm * GetReaderInterForm(); FX_BOOL DoAAction(CPDF_AAction::AActionType eAAT, FX_BOOL & bExit); FX_BOOL FindAAction(CPDF_AAction::AActionType eAAT,CPDF_Action & action); FX_BOOL FindAAction(CPDF_AAction aaction,CPDF_AAction::AActionType eAAT,CPDF_Action & action); |