diff options
author | dsinclair <dsinclair@chromium.org> | 2016-07-11 08:42:33 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-07-11 08:42:33 -0700 |
commit | 34f86b0c7816289d2a0b402d1909572f4e95613b (patch) | |
tree | f4cc3d2442311723fd01d03689964fa0693bb5b1 /testing/libfuzzer/pdf_xml_fuzzer.cc | |
parent | a1b0772321e9b839073b9b312bac22143f2d4011 (diff) | |
download | pdfium-34f86b0c7816289d2a0b402d1909572f4e95613b.tar.xz |
Break xfa_parser_imp apart
This CL splits the three parsers into individual files to make working with
the code easier.
Review-Url: https://codereview.chromium.org/2129963002
Diffstat (limited to 'testing/libfuzzer/pdf_xml_fuzzer.cc')
-rw-r--r-- | testing/libfuzzer/pdf_xml_fuzzer.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/libfuzzer/pdf_xml_fuzzer.cc b/testing/libfuzzer/pdf_xml_fuzzer.cc index c93a5c293a..0b80b1a04c 100644 --- a/testing/libfuzzer/pdf_xml_fuzzer.cc +++ b/testing/libfuzzer/pdf_xml_fuzzer.cc @@ -9,7 +9,8 @@ #include "core/fxcrt/include/fx_basic.h" #include "core/fxcrt/include/fx_system.h" -#include "xfa/fxfa/parser/xfa_parser_imp.h" +#include "xfa/fde/xml/fde_xml_imp.h" +#include "xfa/fxfa/parser/cxfa_xml_parser.h" #include "xfa/fxfa/parser/xfa_utils.h" namespace { |