summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2018-10-18 21:09:55 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-10-18 21:09:55 +0000
commit31beedc1e833842385b20b40d0ef27dbfc979443 (patch)
tree3678b19d407cfa3bc38bcc654b3b14e1aa7cdba9
parentf58b6f62614357ef3a6f171a9f5c89d72981ac40 (diff)
downloadpdfium-31beedc1e833842385b20b40d0ef27dbfc979443.tar.xz
Do more IWYU in fxjs/.
Change-Id: I778085c6e21904e697d5899a93f4e4e9fca92478 Reviewed-on: https://pdfium-review.googlesource.com/c/44272 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org>
-rw-r--r--fxjs/cjs_annot.cpp5
-rw-r--r--fxjs/cjs_annot.h6
-rw-r--r--fxjs/cjs_app.h1
-rw-r--r--fxjs/cjs_border.h2
-rw-r--r--fxjs/cjs_color.h1
-rw-r--r--fxjs/cjs_console.h1
-rw-r--r--fxjs/cjs_display.h2
-rw-r--r--fxjs/cjs_document.h1
-rw-r--r--fxjs/cjs_event.h1
-rw-r--r--fxjs/cjs_field.h1
-rw-r--r--fxjs/cjs_font.h2
-rw-r--r--fxjs/cjs_global.h3
-rw-r--r--fxjs/cjs_globalarrays.h2
-rw-r--r--fxjs/cjs_globalconsts.h2
-rw-r--r--fxjs/cjs_highlight.h2
-rw-r--r--fxjs/cjs_icon.h1
-rw-r--r--fxjs/cjs_position.h2
-rw-r--r--fxjs/cjs_printparamsobj.cpp2
-rw-r--r--fxjs/cjs_printparamsobj.h2
-rw-r--r--fxjs/cjs_publicmethods.h3
-rw-r--r--fxjs/cjs_report.h1
-rw-r--r--fxjs/cjs_scalehow.h2
-rw-r--r--fxjs/cjs_scalewhen.h2
-rw-r--r--fxjs/cjs_style.h2
-rw-r--r--fxjs/cjs_timerobj.h2
-rw-r--r--fxjs/cjs_util.h1
-rw-r--r--fxjs/cjs_zoomtype.h2
-rw-r--r--fxjs/js_define.h4
-rw-r--r--testing/xfa_js_embedder_test.h1
29 files changed, 40 insertions, 19 deletions
diff --git a/fxjs/cjs_annot.cpp b/fxjs/cjs_annot.cpp
index dda52f629c..7b0dee6971 100644
--- a/fxjs/cjs_annot.cpp
+++ b/fxjs/cjs_annot.cpp
@@ -6,6 +6,7 @@
#include "fxjs/cjs_annot.h"
+#include "fpdfsdk/cpdfsdk_baannot.h"
#include "fxjs/cjs_event_context.h"
#include "fxjs/cjs_object.h"
#include "fxjs/js_define.h"
@@ -37,6 +38,10 @@ CJS_Annot::CJS_Annot(v8::Local<v8::Object> pObject, CJS_Runtime* pRuntime)
CJS_Annot::~CJS_Annot() = default;
+void CJS_Annot::SetSDKAnnot(CPDFSDK_BAAnnot* annot) {
+ m_pAnnot.Reset(annot);
+}
+
CJS_Result CJS_Annot::get_hidden(CJS_Runtime* pRuntime) {
if (!m_pAnnot)
return CJS_Result::Failure(JSMessage::kBadObjectError);
diff --git a/fxjs/cjs_annot.h b/fxjs/cjs_annot.h
index ea2168ea31..0c2a66b965 100644
--- a/fxjs/cjs_annot.h
+++ b/fxjs/cjs_annot.h
@@ -7,9 +7,11 @@
#ifndef FXJS_CJS_ANNOT_H_
#define FXJS_CJS_ANNOT_H_
-#include "fpdfsdk/cpdfsdk_baannot.h"
+#include "fxjs/cjs_object.h"
#include "fxjs/js_define.h"
+class CPDFSDK_BAAnnot;
+
class CJS_Annot final : public CJS_Object {
public:
static int GetObjDefnID();
@@ -18,7 +20,7 @@ class CJS_Annot final : public CJS_Object {
CJS_Annot(v8::Local<v8::Object> pObject, CJS_Runtime* pRuntime);
~CJS_Annot() override;
- void SetSDKAnnot(CPDFSDK_BAAnnot* annot) { m_pAnnot.Reset(annot); }
+ void SetSDKAnnot(CPDFSDK_BAAnnot* annot);
JS_STATIC_PROP(hidden, hidden, CJS_Annot);
JS_STATIC_PROP(name, name, CJS_Annot);
diff --git a/fxjs/cjs_app.h b/fxjs/cjs_app.h
index 5f211d710c..9948133f60 100644
--- a/fxjs/cjs_app.h
+++ b/fxjs/cjs_app.h
@@ -11,6 +11,7 @@
#include <set>
#include <vector>
+#include "fxjs/cjs_object.h"
#include "fxjs/js_define.h"
class CJS_Runtime;
diff --git a/fxjs/cjs_border.h b/fxjs/cjs_border.h
index 8122934593..ceb9b03a33 100644
--- a/fxjs/cjs_border.h
+++ b/fxjs/cjs_border.h
@@ -7,7 +7,7 @@
#ifndef FXJS_CJS_BORDER_H_
#define FXJS_CJS_BORDER_H_
-#include "fxjs/js_define.h"
+#include "fxjs/cjs_object.h"
class CJS_Border final : public CJS_Object {
public:
diff --git a/fxjs/cjs_color.h b/fxjs/cjs_color.h
index 4e28166cd2..cb9384d34b 100644
--- a/fxjs/cjs_color.h
+++ b/fxjs/cjs_color.h
@@ -9,6 +9,7 @@
#include <vector>
+#include "fxjs/cjs_object.h"
#include "fxjs/js_define.h"
class CJS_Color final : public CJS_Object {
diff --git a/fxjs/cjs_console.h b/fxjs/cjs_console.h
index 59276be27b..bdf8d518e8 100644
--- a/fxjs/cjs_console.h
+++ b/fxjs/cjs_console.h
@@ -9,6 +9,7 @@
#include <vector>
+#include "fxjs/cjs_object.h"
#include "fxjs/js_define.h"
class CJS_Console final : public CJS_Object {
diff --git a/fxjs/cjs_display.h b/fxjs/cjs_display.h
index 35eebbac86..eaa700ed7c 100644
--- a/fxjs/cjs_display.h
+++ b/fxjs/cjs_display.h
@@ -7,7 +7,7 @@
#ifndef FXJS_CJS_DISPLAY_H_
#define FXJS_CJS_DISPLAY_H_
-#include "fxjs/js_define.h"
+#include "fxjs/cjs_object.h"
class CJS_Display final : public CJS_Object {
public:
diff --git a/fxjs/cjs_document.h b/fxjs/cjs_document.h
index ed8bcc08c9..7072dfe700 100644
--- a/fxjs/cjs_document.h
+++ b/fxjs/cjs_document.h
@@ -12,6 +12,7 @@
#include <vector>
#include "core/fxcrt/observable.h"
+#include "fxjs/cjs_object.h"
#include "fxjs/js_define.h"
class CPDFSDK_InteractiveForm;
diff --git a/fxjs/cjs_event.h b/fxjs/cjs_event.h
index a6308ec16f..4b557887a0 100644
--- a/fxjs/cjs_event.h
+++ b/fxjs/cjs_event.h
@@ -7,6 +7,7 @@
#ifndef FXJS_CJS_EVENT_H_
#define FXJS_CJS_EVENT_H_
+#include "fxjs/cjs_object.h"
#include "fxjs/js_define.h"
class CJS_Event final : public CJS_Object {
diff --git a/fxjs/cjs_field.h b/fxjs/cjs_field.h
index 290192afaa..3d11475994 100644
--- a/fxjs/cjs_field.h
+++ b/fxjs/cjs_field.h
@@ -11,6 +11,7 @@
#include <vector>
#include "fxjs/cjs_document.h"
+#include "fxjs/cjs_object.h"
#include "fxjs/js_define.h"
class CPDF_FormControl;
diff --git a/fxjs/cjs_font.h b/fxjs/cjs_font.h
index 56b3db0cdc..39de804f06 100644
--- a/fxjs/cjs_font.h
+++ b/fxjs/cjs_font.h
@@ -7,7 +7,7 @@
#ifndef FXJS_CJS_FONT_H_
#define FXJS_CJS_FONT_H_
-#include "fxjs/js_define.h"
+#include "fxjs/cjs_object.h"
class CJS_Font final : public CJS_Object {
public:
diff --git a/fxjs/cjs_global.h b/fxjs/cjs_global.h
index 454ddf9b4f..abdcfa372c 100644
--- a/fxjs/cjs_global.h
+++ b/fxjs/cjs_global.h
@@ -12,7 +12,8 @@
#include <vector>
#include "fxjs/cjs_keyvalue.h"
-#include "fxjs/js_define.h"
+#include "fxjs/cjs_object.h"
+#include "fxjs/cjs_result.h"
class CJS_GlobalData;
diff --git a/fxjs/cjs_globalarrays.h b/fxjs/cjs_globalarrays.h
index cfd90af52c..244db2ede7 100644
--- a/fxjs/cjs_globalarrays.h
+++ b/fxjs/cjs_globalarrays.h
@@ -7,7 +7,7 @@
#ifndef FXJS_CJS_GLOBALARRAYS_H_
#define FXJS_CJS_GLOBALARRAYS_H_
-#include "fxjs/js_define.h"
+#include "fxjs/cjs_object.h"
class CJS_GlobalArrays final : public CJS_Object {
public:
diff --git a/fxjs/cjs_globalconsts.h b/fxjs/cjs_globalconsts.h
index 1846c41b50..71c689b90d 100644
--- a/fxjs/cjs_globalconsts.h
+++ b/fxjs/cjs_globalconsts.h
@@ -7,7 +7,7 @@
#ifndef FXJS_CJS_GLOBALCONSTS_H_
#define FXJS_CJS_GLOBALCONSTS_H_
-#include "fxjs/js_define.h"
+#include "fxjs/cjs_object.h"
class CJS_GlobalConsts final : public CJS_Object {
public:
diff --git a/fxjs/cjs_highlight.h b/fxjs/cjs_highlight.h
index acf03e8273..5290c17688 100644
--- a/fxjs/cjs_highlight.h
+++ b/fxjs/cjs_highlight.h
@@ -7,7 +7,7 @@
#ifndef FXJS_CJS_HIGHLIGHT_H_
#define FXJS_CJS_HIGHLIGHT_H_
-#include "fxjs/js_define.h"
+#include "fxjs/cjs_object.h"
class CJS_Highlight final : public CJS_Object {
public:
diff --git a/fxjs/cjs_icon.h b/fxjs/cjs_icon.h
index a92509d55a..9c2d64ab90 100644
--- a/fxjs/cjs_icon.h
+++ b/fxjs/cjs_icon.h
@@ -7,6 +7,7 @@
#ifndef FXJS_CJS_ICON_H_
#define FXJS_CJS_ICON_H_
+#include "fxjs/cjs_object.h"
#include "fxjs/js_define.h"
class CJS_Icon final : public CJS_Object {
diff --git a/fxjs/cjs_position.h b/fxjs/cjs_position.h
index 3db83fffc0..f5c386bc21 100644
--- a/fxjs/cjs_position.h
+++ b/fxjs/cjs_position.h
@@ -7,7 +7,7 @@
#ifndef FXJS_CJS_POSITION_H_
#define FXJS_CJS_POSITION_H_
-#include "fxjs/js_define.h"
+#include "fxjs/cjs_object.h"
class CJS_Position final : public CJS_Object {
public:
diff --git a/fxjs/cjs_printparamsobj.cpp b/fxjs/cjs_printparamsobj.cpp
index 7cb32ded59..37ff956f74 100644
--- a/fxjs/cjs_printparamsobj.cpp
+++ b/fxjs/cjs_printparamsobj.cpp
@@ -6,6 +6,8 @@
#include "fxjs/cjs_printparamsobj.h"
+#include "fxjs/js_define.h"
+
int CJS_PrintParamsObj::ObjDefnID = -1;
// static
diff --git a/fxjs/cjs_printparamsobj.h b/fxjs/cjs_printparamsobj.h
index 69071e6e29..f8b055729c 100644
--- a/fxjs/cjs_printparamsobj.h
+++ b/fxjs/cjs_printparamsobj.h
@@ -7,7 +7,7 @@
#ifndef FXJS_CJS_PRINTPARAMSOBJ_H_
#define FXJS_CJS_PRINTPARAMSOBJ_H_
-#include "fxjs/js_define.h"
+#include "fxjs/cjs_object.h"
class CJS_PrintParamsObj final : public CJS_Object {
public:
diff --git a/fxjs/cjs_publicmethods.h b/fxjs/cjs_publicmethods.h
index 049fa681aa..975ba6e9d4 100644
--- a/fxjs/cjs_publicmethods.h
+++ b/fxjs/cjs_publicmethods.h
@@ -9,7 +9,8 @@
#include <vector>
-#include "fxjs/js_define.h"
+#include "fxjs/cjs_object.h"
+#include "fxjs/cjs_result.h"
class CJS_PublicMethods final : public CJS_Object {
public:
diff --git a/fxjs/cjs_report.h b/fxjs/cjs_report.h
index 6606d1431d..919664dd65 100644
--- a/fxjs/cjs_report.h
+++ b/fxjs/cjs_report.h
@@ -9,6 +9,7 @@
#include <vector>
+#include "fxjs/cjs_object.h"
#include "fxjs/js_define.h"
class CJS_Report final : public CJS_Object {
diff --git a/fxjs/cjs_scalehow.h b/fxjs/cjs_scalehow.h
index a5e4435388..a5c895ac6b 100644
--- a/fxjs/cjs_scalehow.h
+++ b/fxjs/cjs_scalehow.h
@@ -7,7 +7,7 @@
#ifndef FXJS_CJS_SCALEHOW_H_
#define FXJS_CJS_SCALEHOW_H_
-#include "fxjs/js_define.h"
+#include "fxjs/cjs_object.h"
class CJS_ScaleHow final : public CJS_Object {
public:
diff --git a/fxjs/cjs_scalewhen.h b/fxjs/cjs_scalewhen.h
index c0117ee8be..77980dc70a 100644
--- a/fxjs/cjs_scalewhen.h
+++ b/fxjs/cjs_scalewhen.h
@@ -7,7 +7,7 @@
#ifndef FXJS_CJS_SCALEWHEN_H_
#define FXJS_CJS_SCALEWHEN_H_
-#include "fxjs/js_define.h"
+#include "fxjs/cjs_object.h"
class CJS_ScaleWhen final : public CJS_Object {
public:
diff --git a/fxjs/cjs_style.h b/fxjs/cjs_style.h
index 8ddd6a3a0a..6d11170f0e 100644
--- a/fxjs/cjs_style.h
+++ b/fxjs/cjs_style.h
@@ -7,7 +7,7 @@
#ifndef FXJS_CJS_STYLE_H_
#define FXJS_CJS_STYLE_H_
-#include "fxjs/js_define.h"
+#include "fxjs/cjs_object.h"
class CJS_Style final : public CJS_Object {
public:
diff --git a/fxjs/cjs_timerobj.h b/fxjs/cjs_timerobj.h
index 589284943b..69effa638d 100644
--- a/fxjs/cjs_timerobj.h
+++ b/fxjs/cjs_timerobj.h
@@ -7,7 +7,7 @@
#ifndef FXJS_CJS_TIMEROBJ_H_
#define FXJS_CJS_TIMEROBJ_H_
-#include "fxjs/js_define.h"
+#include "fxjs/cjs_object.h"
class GlobalTimer;
diff --git a/fxjs/cjs_util.h b/fxjs/cjs_util.h
index 934a0f8f22..917d79729e 100644
--- a/fxjs/cjs_util.h
+++ b/fxjs/cjs_util.h
@@ -10,6 +10,7 @@
#include <string>
#include <vector>
+#include "fxjs/cjs_object.h"
#include "fxjs/js_define.h"
// Return values for ParseDataType() below.
diff --git a/fxjs/cjs_zoomtype.h b/fxjs/cjs_zoomtype.h
index 892f72e3bc..dc9897acc3 100644
--- a/fxjs/cjs_zoomtype.h
+++ b/fxjs/cjs_zoomtype.h
@@ -7,7 +7,7 @@
#ifndef FXJS_CJS_ZOOMTYPE_H_
#define FXJS_CJS_ZOOMTYPE_H_
-#include "fxjs/js_define.h"
+#include "fxjs/cjs_object.h"
class CJS_Zoomtype final : public CJS_Object {
public:
diff --git a/fxjs/js_define.h b/fxjs/js_define.h
index 9187e60e3f..bf7aa35504 100644
--- a/fxjs/js_define.h
+++ b/fxjs/js_define.h
@@ -11,11 +11,13 @@
#include "core/fxcrt/unowned_ptr.h"
#include "fxjs/cfxjs_engine.h"
-#include "fxjs/cjs_object.h"
#include "fxjs/cjs_result.h"
+#include "fxjs/cjs_runtime.h"
#include "fxjs/js_resources.h"
#include "third_party/base/ptr_util.h"
+class CJS_Object;
+
double JS_GetDateTime();
int JS_GetYearFromTime(double dt);
int JS_GetMonthFromTime(double dt);
diff --git a/testing/xfa_js_embedder_test.h b/testing/xfa_js_embedder_test.h
index 0c8b08e670..720065867d 100644
--- a/testing/xfa_js_embedder_test.h
+++ b/testing/xfa_js_embedder_test.h
@@ -11,7 +11,6 @@
#include "testing/embedder_test.h"
#include "xfa/fxfa/parser/cxfa_document.h"
#include "xfa/fxfa/parser/cxfa_node.h"
-#include "xfa/fxfa/parser/cxfa_object.h"
class CFXJSE_Engine;
class CFXJSE_Value;