Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(579)

Unified Diff: testing/libfuzzer/pdf_cfx_saxreader_fuzzer.cc

Issue 2443723002: Rename IFX_ stream names (Closed)
Patch Set: Nits Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « fpdfsdk/fsdk_define.h ('k') | testing/libfuzzer/xfa_codec_fuzzer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/libfuzzer/pdf_cfx_saxreader_fuzzer.cc
diff --git a/testing/libfuzzer/pdf_cfx_saxreader_fuzzer.cc b/testing/libfuzzer/pdf_cfx_saxreader_fuzzer.cc
index 501c4ff38bf7b62f85ca60fd9718e7f0d0f8a4b5..b32a182f234b243ac9ca0aa4c371601943ffec85 100644
--- a/testing/libfuzzer/pdf_cfx_saxreader_fuzzer.cc
+++ b/testing/libfuzzer/pdf_cfx_saxreader_fuzzer.cc
@@ -16,8 +16,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
if (!stream)
return 0;
- std::unique_ptr<IFX_FileRead, ReleaseDeleter<IFX_FileRead>> fileRead(
- FX_CreateFileRead(stream.get(), false));
+ std::unique_ptr<IFX_SeekableReadStream,
+ ReleaseDeleter<IFX_SeekableReadStream>>
+ fileRead(FX_CreateFileRead(stream.get(), false));
if (!fileRead)
return 0;
« no previous file with comments | « fpdfsdk/fsdk_define.h ('k') | testing/libfuzzer/xfa_codec_fuzzer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698