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

Unified Diff: net/dns/host_resolver_mojo.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_mojo.cc
diff --git a/net/dns/host_resolver_mojo.cc b/net/dns/host_resolver_mojo.cc
index 4f13daf8a844c29536575b50ad1e053ef762ebdc..106d4a24ca9aa6f7459b64227095049bfdb81d57 100644
--- a/net/dns/host_resolver_mojo.cc
+++ b/net/dns/host_resolver_mojo.cc
@@ -77,7 +77,7 @@ int HostResolverMojo::Resolve(const RequestInfo& info,
AddressList* addresses,
const CompletionCallback& callback,
std::unique_ptr<Request>* request,
- const BoundNetLog& source_net_log) {
+ const NetLogWithSource& source_net_log) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(request);
DVLOG(1) << "Resolve " << info.host_port_pair().ToString();
@@ -103,7 +103,7 @@ int HostResolverMojo::Resolve(const RequestInfo& info,
int HostResolverMojo::ResolveFromCache(const RequestInfo& info,
AddressList* addresses,
- const BoundNetLog& source_net_log) {
+ const NetLogWithSource& source_net_log) {
DCHECK(thread_checker_.CalledOnValidThread());
DVLOG(1) << "ResolveFromCache " << info.host_port_pair().ToString();
return ResolveFromCacheInternal(info, CacheKeyForRequest(info), addresses);

Powered by Google App Engine
This is Rietveld 408576698