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

Unified Diff: net/dns/dns_transaction_unittest.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/dns_transaction_unittest.cc
diff --git a/net/dns/dns_transaction_unittest.cc b/net/dns/dns_transaction_unittest.cc
index 89a7dacb98c6bed824162068a2babd4576ac120f..10151f311ac13d91b10b8e97b78b17c13eb0ff48 100644
--- a/net/dns/dns_transaction_unittest.cc
+++ b/net/dns/dns_transaction_unittest.cc
@@ -252,11 +252,9 @@ class TransactionHelper {
void StartTransaction(DnsTransactionFactory* factory) {
EXPECT_EQ(NULL, transaction_.get());
transaction_ = factory->CreateTransaction(
- hostname_,
- qtype_,
- base::Bind(&TransactionHelper::OnTransactionComplete,
- base::Unretained(this)),
- BoundNetLog());
+ hostname_, qtype_, base::Bind(&TransactionHelper::OnTransactionComplete,
+ base::Unretained(this)),
+ NetLogWithSource());
EXPECT_EQ(hostname_, transaction_->GetHostname());
EXPECT_EQ(qtype_, transaction_->GetType());
transaction_->Start();

Powered by Google App Engine
This is Rietveld 408576698