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

Unified Diff: net/dns/mapped_host_resolver.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/mapped_host_resolver.cc
diff --git a/net/dns/mapped_host_resolver.cc b/net/dns/mapped_host_resolver.cc
index 43ad71acdde54a566a41ac067214ba9d4d765ecd..e29c85ea75c4b8bb55352eed3663769b17c4bcf8 100644
--- a/net/dns/mapped_host_resolver.cc
+++ b/net/dns/mapped_host_resolver.cc
@@ -24,7 +24,7 @@ int MappedHostResolver::Resolve(const RequestInfo& original_info,
AddressList* addresses,
const CompletionCallback& callback,
std::unique_ptr<Request>* request,
- const BoundNetLog& net_log) {
+ const NetLogWithSource& net_log) {
RequestInfo info = original_info;
int rv = ApplyRules(&info);
if (rv != OK)
@@ -35,7 +35,7 @@ int MappedHostResolver::Resolve(const RequestInfo& original_info,
int MappedHostResolver::ResolveFromCache(const RequestInfo& original_info,
AddressList* addresses,
- const BoundNetLog& net_log) {
+ const NetLogWithSource& net_log) {
RequestInfo info = original_info;
int rv = ApplyRules(&info);
if (rv != OK)

Powered by Google App Engine
This is Rietveld 408576698