diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-06-19 13:38:19 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-06-19 13:38:19 -0700 |
commit | 012ada613a1462f109eb59790f8e5ee91aacdb7e (patch) | |
tree | dddb1175411ec861c2deb0f052ca3836c16fe337 /samples | |
parent | 959eb05140a8f5af7724a2da4cf5d04e2e50f4a6 (diff) | |
download | pdfium-012ada613a1462f109eb59790f8e5ee91aacdb7e.tar.xz |
Disintermediation.
Removed several header files that simply proxy other headers.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1199553002.
Diffstat (limited to 'samples')
-rw-r--r-- | samples/fx_lpng/lpng_v163/pngstruct.h | 2 | ||||
-rw-r--r-- | samples/image_diff_png.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/samples/fx_lpng/lpng_v163/pngstruct.h b/samples/fx_lpng/lpng_v163/pngstruct.h index 269470531e..25355c4012 100644 --- a/samples/fx_lpng/lpng_v163/pngstruct.h +++ b/samples/fx_lpng/lpng_v163/pngstruct.h @@ -28,7 +28,7 @@ /* We must ensure that zlib uses 'const' in declarations. */
# define ZLIB_CONST
#endif
-#include "../../fx_zlib/include/fx_zlib.h"
+#include "../../../third_party/zlib_v128/zlib.h"
#ifdef const
/* zlib.h sometimes #defines const to nothing, undo this. */
# undef const
diff --git a/samples/image_diff_png.cc b/samples/image_diff_png.cc index 04c2591b60..4ece285aa7 100644 --- a/samples/image_diff_png.cc +++ b/samples/image_diff_png.cc @@ -17,7 +17,7 @@ #include <string> #include "../third_party/base/logging.h" -#include "../core/src/fxcodec/fx_zlib/include/fx_zlib.h" +#include "../third_party/zlib_v128/zlib.h" #include "fx_lpng/include/fx_png.h" namespace image_diff_png { |