summaryrefslogtreecommitdiff
path: root/samples
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2015-11-12 21:17:40 -0800
committerLei Zhang <thestig@chromium.org>2015-11-12 21:17:40 -0800
commit22bc4227fbbda5a5e9abad2a2c0a98c04fe7f228 (patch)
tree2efddfef7327e6ab3af34305ee451563abc62bf7 /samples
parent4274ea205ca2219f6a4cfc54025284c1aa3b14b8 (diff)
downloadpdfium-22bc4227fbbda5a5e9abad2a2c0a98c04fe7f228.tar.xz
Remove relative includes.
That refer to parent directories. R=dsinclair@chromium.org Review URL: https://codereview.chromium.org/1434223002 .
Diffstat (limited to 'samples')
-rw-r--r--samples/fx_lpng/include/fx_png.h2
-rw-r--r--samples/fx_lpng/src/fx_png.c2
-rw-r--r--samples/fx_lpng/src/fx_pngerror.c2
-rw-r--r--samples/fx_lpng/src/fx_pngget.c2
-rw-r--r--samples/fx_lpng/src/fx_pngmem.c2
-rw-r--r--samples/fx_lpng/src/fx_pngpread.c2
-rw-r--r--samples/fx_lpng/src/fx_pngread.c2
-rw-r--r--samples/fx_lpng/src/fx_pngrio.c2
-rw-r--r--samples/fx_lpng/src/fx_pngrtran.c2
-rw-r--r--samples/fx_lpng/src/fx_pngrutil.c2
-rw-r--r--samples/fx_lpng/src/fx_pngset.c2
-rw-r--r--samples/fx_lpng/src/fx_pngtrans.c2
-rw-r--r--samples/fx_lpng/src/fx_pngwio.c2
-rw-r--r--samples/fx_lpng/src/fx_pngwrite.c2
-rw-r--r--samples/fx_lpng/src/fx_pngwtran.c2
-rw-r--r--samples/fx_lpng/src/fx_pngwutil.c2
-rw-r--r--samples/pdfium_test.cc2
17 files changed, 17 insertions, 17 deletions
diff --git a/samples/fx_lpng/include/fx_png.h b/samples/fx_lpng/include/fx_png.h
index 322a0d3c83..b48a912851 100644
--- a/samples/fx_lpng/include/fx_png.h
+++ b/samples/fx_lpng/include/fx_png.h
@@ -4,4 +4,4 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../lpng_v163/png.h"
+#include "samples/fx_lpng/lpng_v163/png.h"
diff --git a/samples/fx_lpng/src/fx_png.c b/samples/fx_lpng/src/fx_png.c
index 7b6582666f..fa23bcea2d 100644
--- a/samples/fx_lpng/src/fx_png.c
+++ b/samples/fx_lpng/src/fx_png.c
@@ -4,4 +4,4 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../lpng_v163/fx_png.c"
+#include "samples/fx_lpng/lpng_v163/fx_png.c"
diff --git a/samples/fx_lpng/src/fx_pngerror.c b/samples/fx_lpng/src/fx_pngerror.c
index 7581b99130..b29f5eb1d4 100644
--- a/samples/fx_lpng/src/fx_pngerror.c
+++ b/samples/fx_lpng/src/fx_pngerror.c
@@ -4,4 +4,4 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../lpng_v163/fx_pngerror.c"
+#include "samples/fx_lpng/lpng_v163/fx_pngerror.c"
diff --git a/samples/fx_lpng/src/fx_pngget.c b/samples/fx_lpng/src/fx_pngget.c
index cc8dc4e6b7..e278535ad0 100644
--- a/samples/fx_lpng/src/fx_pngget.c
+++ b/samples/fx_lpng/src/fx_pngget.c
@@ -4,4 +4,4 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../lpng_v163/fx_pngget.c"
+#include "samples/fx_lpng/lpng_v163/fx_pngget.c"
diff --git a/samples/fx_lpng/src/fx_pngmem.c b/samples/fx_lpng/src/fx_pngmem.c
index 9892408d70..d3a79b96da 100644
--- a/samples/fx_lpng/src/fx_pngmem.c
+++ b/samples/fx_lpng/src/fx_pngmem.c
@@ -4,4 +4,4 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../lpng_v163/fx_pngmem.c"
+#include "samples/fx_lpng/lpng_v163/fx_pngmem.c"
diff --git a/samples/fx_lpng/src/fx_pngpread.c b/samples/fx_lpng/src/fx_pngpread.c
index 8d53be20a6..0c0dd9008c 100644
--- a/samples/fx_lpng/src/fx_pngpread.c
+++ b/samples/fx_lpng/src/fx_pngpread.c
@@ -4,4 +4,4 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../lpng_v163/fx_pngpread.c"
+#include "samples/fx_lpng/lpng_v163/fx_pngpread.c"
diff --git a/samples/fx_lpng/src/fx_pngread.c b/samples/fx_lpng/src/fx_pngread.c
index c612bd533e..0d241d54f1 100644
--- a/samples/fx_lpng/src/fx_pngread.c
+++ b/samples/fx_lpng/src/fx_pngread.c
@@ -4,4 +4,4 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../lpng_v163/fx_pngread.c"
+#include "samples/fx_lpng/lpng_v163/fx_pngread.c"
diff --git a/samples/fx_lpng/src/fx_pngrio.c b/samples/fx_lpng/src/fx_pngrio.c
index d324a8e6e5..f4b5e4b3fa 100644
--- a/samples/fx_lpng/src/fx_pngrio.c
+++ b/samples/fx_lpng/src/fx_pngrio.c
@@ -4,4 +4,4 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../lpng_v163/fx_pngrio.c"
+#include "samples/fx_lpng/lpng_v163/fx_pngrio.c"
diff --git a/samples/fx_lpng/src/fx_pngrtran.c b/samples/fx_lpng/src/fx_pngrtran.c
index bec380dc3c..4612d32bd2 100644
--- a/samples/fx_lpng/src/fx_pngrtran.c
+++ b/samples/fx_lpng/src/fx_pngrtran.c
@@ -4,4 +4,4 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../lpng_v163/fx_pngrtran.c"
+#include "samples/fx_lpng/lpng_v163/fx_pngrtran.c"
diff --git a/samples/fx_lpng/src/fx_pngrutil.c b/samples/fx_lpng/src/fx_pngrutil.c
index a3da3555e3..0a7e0cbb0e 100644
--- a/samples/fx_lpng/src/fx_pngrutil.c
+++ b/samples/fx_lpng/src/fx_pngrutil.c
@@ -4,4 +4,4 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../lpng_v163/fx_pngrutil.c"
+#include "samples/fx_lpng/lpng_v163/fx_pngrutil.c"
diff --git a/samples/fx_lpng/src/fx_pngset.c b/samples/fx_lpng/src/fx_pngset.c
index 76a72223f2..86c9171b4c 100644
--- a/samples/fx_lpng/src/fx_pngset.c
+++ b/samples/fx_lpng/src/fx_pngset.c
@@ -4,4 +4,4 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../lpng_v163/fx_pngset.c"
+#include "samples/fx_lpng/lpng_v163/fx_pngset.c"
diff --git a/samples/fx_lpng/src/fx_pngtrans.c b/samples/fx_lpng/src/fx_pngtrans.c
index eac49bf227..d82b7abea6 100644
--- a/samples/fx_lpng/src/fx_pngtrans.c
+++ b/samples/fx_lpng/src/fx_pngtrans.c
@@ -4,4 +4,4 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../lpng_v163/fx_pngtrans.c"
+#include "samples/fx_lpng/lpng_v163/fx_pngtrans.c"
diff --git a/samples/fx_lpng/src/fx_pngwio.c b/samples/fx_lpng/src/fx_pngwio.c
index 3fb21e5b0b..36af23f00e 100644
--- a/samples/fx_lpng/src/fx_pngwio.c
+++ b/samples/fx_lpng/src/fx_pngwio.c
@@ -4,4 +4,4 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../lpng_v163/fx_pngwio.c"
+#include "samples/fx_lpng/lpng_v163/fx_pngwio.c"
diff --git a/samples/fx_lpng/src/fx_pngwrite.c b/samples/fx_lpng/src/fx_pngwrite.c
index 4434fd0cb4..425f7f8c58 100644
--- a/samples/fx_lpng/src/fx_pngwrite.c
+++ b/samples/fx_lpng/src/fx_pngwrite.c
@@ -7,4 +7,4 @@
#ifdef _MSC_VER
#define _CRT_SECURE_NO_WARNINGS
#endif
-#include "../lpng_v163/fx_pngwrite.c"
+#include "samples/fx_lpng/lpng_v163/fx_pngwrite.c"
diff --git a/samples/fx_lpng/src/fx_pngwtran.c b/samples/fx_lpng/src/fx_pngwtran.c
index 8a095d3565..5fd74ff00c 100644
--- a/samples/fx_lpng/src/fx_pngwtran.c
+++ b/samples/fx_lpng/src/fx_pngwtran.c
@@ -4,4 +4,4 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../lpng_v163/fx_pngwtran.c"
+#include "samples/fx_lpng/lpng_v163/fx_pngwtran.c"
diff --git a/samples/fx_lpng/src/fx_pngwutil.c b/samples/fx_lpng/src/fx_pngwutil.c
index b07fb40500..5e77f7acfd 100644
--- a/samples/fx_lpng/src/fx_pngwutil.c
+++ b/samples/fx_lpng/src/fx_pngwutil.c
@@ -4,4 +4,4 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "../lpng_v163/fx_pngwutil.c"
+#include "samples/fx_lpng/lpng_v163/fx_pngwutil.c"
diff --git a/samples/pdfium_test.cc b/samples/pdfium_test.cc
index d891a815b0..59a7a22d0e 100644
--- a/samples/pdfium_test.cc
+++ b/samples/pdfium_test.cc
@@ -13,13 +13,13 @@
#include <utility>
#include <vector>
-#include "../testing/test_support.h"
#include "image_diff_png.h"
#include "public/fpdf_dataavail.h"
#include "public/fpdf_ext.h"
#include "public/fpdf_formfill.h"
#include "public/fpdf_text.h"
#include "public/fpdfview.h"
+#include "testing/test_support.h"
#ifdef PDF_ENABLE_V8
#include "v8/include/libplatform/libplatform.h"