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

Unified Diff: chrome/browser/net/dns_probe_runner.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: chrome/browser/net/dns_probe_runner.cc
diff --git a/chrome/browser/net/dns_probe_runner.cc b/chrome/browser/net/dns_probe_runner.cc
index 68c2b4aaa73fc18339384b14e3d99b525ef46ec8..03e5a05183d89c15554078c890a82103b9339221 100644
--- a/chrome/browser/net/dns_probe_runner.cc
+++ b/chrome/browser/net/dns_probe_runner.cc
@@ -21,13 +21,13 @@
using base::TimeDelta;
using content::BrowserThread;
using net::AddressList;
-using net::BoundNetLog;
using net::DnsClient;
using net::DnsResponse;
using net::DnsTransaction;
using net::DnsTransactionFactory;
using net::IPEndPoint;
using net::NetLog;
+using net::NetLogWithSource;
using net::NetworkChangeNotifier;
namespace chrome_browser_net {
@@ -107,11 +107,10 @@ void DnsProbeRunner::RunProbe(const base::Closure& callback) {
}
transaction_ = factory->CreateTransaction(
- kKnownGoodHostname,
- net::dns_protocol::kTypeA,
+ kKnownGoodHostname, net::dns_protocol::kTypeA,
base::Bind(&DnsProbeRunner::OnTransactionComplete,
weak_factory_.GetWeakPtr()),
- BoundNetLog());
+ NetLogWithSource());
transaction_->Start();
}

Powered by Google App Engine
This is Rietveld 408576698