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

Unified Diff: components/certificate_transparency/log_dns_client.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: components/certificate_transparency/log_dns_client.h
diff --git a/components/certificate_transparency/log_dns_client.h b/components/certificate_transparency/log_dns_client.h
index 366702925c619ec1809ded8d3931ab9f806e5c36..7065c683da494caadb501731e7efd92a8967f9b7 100644
--- a/components/certificate_transparency/log_dns_client.h
+++ b/components/certificate_transparency/log_dns_client.h
@@ -53,7 +53,7 @@ class LogDnsClient : public net::NetworkChangeNotifier::DNSObserver {
// The |dns_client| does not need to be configured first - this will be done
// automatically as needed.
LogDnsClient(std::unique_ptr<net::DnsClient> dns_client,
- const net::BoundNetLog& net_log);
+ const net::NetLogWithSource& net_log);
// Must be deleted on the same thread that it was created on.
~LogDnsClient() override;
@@ -121,7 +121,7 @@ class LogDnsClient : public net::NetworkChangeNotifier::DNSObserver {
// Used to perform DNS queries.
std::unique_ptr<net::DnsClient> dns_client_;
// Passed to the DNS client for logging.
- net::BoundNetLog net_log_;
+ net::NetLogWithSource net_log_;
// Leaf index queries that haven't completed yet.
std::list<Query<LeafIndexCallback>> leaf_index_queries_;
// Audit proof queries that haven't completed yet.

Powered by Google App Engine
This is Rietveld 408576698