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

Unified Diff: net/ftp/ftp_ctrl_response_fuzzer.cc

Issue 2351513002: net: rename BoundNetLog to NetLogWithSource (Closed)
Patch Set: one more fix, content bound_net_log_ Created 4 years, 3 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
Index: net/ftp/ftp_ctrl_response_fuzzer.cc
diff --git a/net/ftp/ftp_ctrl_response_fuzzer.cc b/net/ftp/ftp_ctrl_response_fuzzer.cc
index 227cfa284970fdb1429db2b335629b598ee97210..b1a4880b0694017ca3bce22dd494330adc855a06 100644
--- a/net/ftp/ftp_ctrl_response_fuzzer.cc
+++ b/net/ftp/ftp_ctrl_response_fuzzer.cc
@@ -10,7 +10,7 @@
// Entry point for LibFuzzer.
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
- const net::BoundNetLog log;
+ const net::NetLogWithSource log;
net::FtpCtrlResponseBuffer buffer(log);
if (!buffer.ConsumeData(reinterpret_cast<const char*>(data), size)) {
return 0;

Powered by Google App Engine
This is Rietveld 408576698