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

Unified Diff: net/dns/host_resolver.h

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.h
diff --git a/net/dns/host_resolver.h b/net/dns/host_resolver.h
index b478b17d6635016d92e095eacef1bbcc7f8baf21..db82b109114326c3f47e9190c1f7fddf1d151e1c 100644
--- a/net/dns/host_resolver.h
+++ b/net/dns/host_resolver.h
@@ -27,7 +27,7 @@ class Value;
namespace net {
class AddressList;
-class BoundNetLog;
+class NetLogWithSource;
class HostResolverImpl;
class HostResolverProc;
class NetLog;
@@ -182,7 +182,7 @@ class NET_EXPORT HostResolver {
AddressList* addresses,
const CompletionCallback& callback,
std::unique_ptr<Request>* out_req,
- const BoundNetLog& net_log) = 0;
+ const NetLogWithSource& net_log) = 0;
// Resolves the given hostname (or IP address literal) out of cache or HOSTS
// file (if enabled) only. This is guaranteed to complete synchronously.
@@ -190,7 +190,7 @@ class NET_EXPORT HostResolver {
// or HOSTS entry exists. Otherwise, ERR_DNS_CACHE_MISS is returned.
virtual int ResolveFromCache(const RequestInfo& info,
AddressList* addresses,
- const BoundNetLog& net_log) = 0;
+ const NetLogWithSource& net_log) = 0;
// Enable or disable the built-in asynchronous DnsClient.
virtual void SetDnsClientEnabled(bool enabled);

Powered by Google App Engine
This is Rietveld 408576698