diff options
author | npm <npm@chromium.org> | 2016-09-30 08:37:51 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-09-30 08:37:51 -0700 |
commit | 43c8a6adc0045c974fb1c831deeef53fa5a38a82 (patch) | |
tree | 645c4ec4dfc22fc8089d147915337153cb3edd65 /testing/libfuzzer/pdf_codec_jbig2_fuzzer.cc | |
parent | 5b4930967676088f2f0e5ce3b25aed77831d678c (diff) | |
download | pdfium-43c8a6adc0045c974fb1c831deeef53fa5a38a82.tar.xz |
Fix #includes in libfuzzer so pdfium can be rolled
Note: pdfium bots don't seem to touch these files.
Review-Url: https://codereview.chromium.org/2379973005
Diffstat (limited to 'testing/libfuzzer/pdf_codec_jbig2_fuzzer.cc')
-rw-r--r-- | testing/libfuzzer/pdf_codec_jbig2_fuzzer.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testing/libfuzzer/pdf_codec_jbig2_fuzzer.cc b/testing/libfuzzer/pdf_codec_jbig2_fuzzer.cc index 4416c9e82c..58927c788a 100644 --- a/testing/libfuzzer/pdf_codec_jbig2_fuzzer.cc +++ b/testing/libfuzzer/pdf_codec_jbig2_fuzzer.cc @@ -4,12 +4,12 @@ #include <cstdint> -#include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h" -#include "core/fpdfapi/fpdf_parser/include/cpdf_stream_acc.h" +#include "core/fpdfapi/fpdf_parser/cpdf_stream.h" +#include "core/fpdfapi/fpdf_parser/cpdf_stream_acc.h" +#include "core/fxcodec/JBig2_DocumentContext.h" #include "core/fxcodec/codec/ccodec_jbig2module.h" -#include "core/fxcodec/include/JBig2_DocumentContext.h" #include "core/fxcodec/jbig2/JBig2_Context.h" -#include "core/fxge/include/fx_dib.h" +#include "core/fxge/fx_dib.h" static uint32_t GetInteger(const uint8_t* data) { return data[0] | data[1] << 8 | data[2] << 16 | data[3] << 24; |