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

Unified Diff: extensions/browser/api/socket/socket_api.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: extensions/browser/api/socket/socket_api.cc
diff --git a/extensions/browser/api/socket/socket_api.cc b/extensions/browser/api/socket/socket_api.cc
index 7aef524c455de769f73d2e6bd54ad738f500a15e..1cc08146d7e6e2dc7341533334a68f8d825d946b 100644
--- a/extensions/browser/api/socket/socket_api.cc
+++ b/extensions/browser/api/socket/socket_api.cc
@@ -207,7 +207,7 @@ void SocketExtensionWithDnsLookupFunction::StartDnsLookup(
int resolve_result = host_resolver->Resolve(
request_info, net::DEFAULT_PRIORITY, &addresses_,
base::Bind(&SocketExtensionWithDnsLookupFunction::OnDnsLookup, this),
- &request_, net::BoundNetLog());
+ &request_, net::NetLogWithSource());
if (resolve_result != net::ERR_IO_PENDING)
OnDnsLookup(resolve_result);

Powered by Google App Engine
This is Rietveld 408576698