diff options
author | Lei Zhang <thestig@chromium.org> | 2016-01-08 15:44:36 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2016-01-08 15:44:36 -0800 |
commit | c909ce872d999a17ffd44afdc88caf2de43e6cba (patch) | |
tree | 6427a1392c01f78c7c859910f93fbaf55d7fb1c2 /xfa/src/fxjse | |
parent | b8e1ab27372cdb5d8c83e57e004032f0d72715db (diff) | |
download | pdfium-c909ce872d999a17ffd44afdc88caf2de43e6cba.tar.xz |
XFA: Remove many relative includes in xfa/
Also remove useless files.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1570743002 .
Diffstat (limited to 'xfa/src/fxjse')
-rw-r--r-- | xfa/src/fxjse/src/class.cpp | 2 | ||||
-rw-r--r-- | xfa/src/fxjse/src/context.cpp | 2 | ||||
-rw-r--r-- | xfa/src/fxjse/src/dynprop.cpp | 2 | ||||
-rw-r--r-- | xfa/src/fxjse/src/runtime.cpp | 4 | ||||
-rw-r--r-- | xfa/src/fxjse/src/value.cpp | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/xfa/src/fxjse/src/class.cpp b/xfa/src/fxjse/src/class.cpp index a4dc922cf2..3b801a8a89 100644 --- a/xfa/src/fxjse/src/class.cpp +++ b/xfa/src/fxjse/src/class.cpp @@ -4,7 +4,7 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../../foxitlib.h"
+#include "xfa/src/foxitlib.h"
#include "fxv8.h"
#include "context.h"
#include "class.h"
diff --git a/xfa/src/fxjse/src/context.cpp b/xfa/src/fxjse/src/context.cpp index de5e4d5873..e3f5b93e3c 100644 --- a/xfa/src/fxjse/src/context.cpp +++ b/xfa/src/fxjse/src/context.cpp @@ -4,7 +4,7 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../../foxitlib.h"
+#include "xfa/src/foxitlib.h"
#include "fxv8.h"
#include "context.h"
#include "class.h"
diff --git a/xfa/src/fxjse/src/dynprop.cpp b/xfa/src/fxjse/src/dynprop.cpp index 413a431cae..37c59f9ede 100644 --- a/xfa/src/fxjse/src/dynprop.cpp +++ b/xfa/src/fxjse/src/dynprop.cpp @@ -4,7 +4,7 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../../foxitlib.h"
+#include "xfa/src/foxitlib.h"
#include "fxv8.h"
#include "class.h"
#include "value.h"
diff --git a/xfa/src/fxjse/src/runtime.cpp b/xfa/src/fxjse/src/runtime.cpp index 6fc2185de1..b1630dcd11 100644 --- a/xfa/src/fxjse/src/runtime.cpp +++ b/xfa/src/fxjse/src/runtime.cpp @@ -4,8 +4,8 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../../../../fpdfsdk/include/jsapi/fxjs_v8.h" // For per-isolate data.
-#include "../../foxitlib.h"
+#include "fpdfsdk/include/jsapi/fxjs_v8.h" // For per-isolate data.
+#include "xfa/src/foxitlib.h"
#include "fxv8.h"
#include "runtime.h"
#include "scope_inline.h"
diff --git a/xfa/src/fxjse/src/value.cpp b/xfa/src/fxjse/src/value.cpp index a6d01843e1..a482fb04b2 100644 --- a/xfa/src/fxjse/src/value.cpp +++ b/xfa/src/fxjse/src/value.cpp @@ -4,7 +4,7 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../../foxitlib.h"
+#include "xfa/src/foxitlib.h"
#include "fxv8.h"
#include "value.h"
#include "class.h"
|