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

Unified Diff: net/dns/host_resolver_impl_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/dns/host_resolver_impl_fuzzer.cc
diff --git a/net/dns/host_resolver_impl_fuzzer.cc b/net/dns/host_resolver_impl_fuzzer.cc
index 5ec65d5eb4649cd28be324090611d60ef926292f..74d31b6da52876441384e4b6b6bf22ae67c124df 100644
--- a/net/dns/host_resolver_impl_fuzzer.cc
+++ b/net/dns/host_resolver_impl_fuzzer.cc
@@ -146,14 +146,14 @@ class DnsRequest {
// Decide if should be a cache-only resolution.
if (data_provider_->ConsumeBool()) {
return host_resolver_->ResolveFromCache(info, &address_list_,
- net::BoundNetLog());
+ net::NetLogWithSource());
}
info.set_allow_cached_response(data_provider_->ConsumeBool());
return host_resolver_->Resolve(
info, priority, &address_list_,
base::Bind(&DnsRequest::OnCallback, base::Unretained(this)), &request_,
- net::BoundNetLog());
+ net::NetLogWithSource());
}
// Waits until the request is done, if it isn't done already.

Powered by Google App Engine
This is Rietveld 408576698