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

Unified Diff: net/disk_cache/blockfile/entry_impl.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/disk_cache/blockfile/entry_impl.cc
diff --git a/net/disk_cache/blockfile/entry_impl.cc b/net/disk_cache/blockfile/entry_impl.cc
index c8b64fbb70f186e9b7a4cf83d0c4b66c6f787313..17185ba11af1667c1def8e0ff0bb4ee9a17b0bf1 100644
--- a/net/disk_cache/blockfile/entry_impl.cc
+++ b/net/disk_cache/blockfile/entry_impl.cc
@@ -735,13 +735,13 @@ void EntryImpl::ReportIOTime(Operation op, const base::TimeTicks& start) {
void EntryImpl::BeginLogging(net::NetLog* net_log, bool created) {
DCHECK(!net_log_.net_log());
- net_log_ =
- net::BoundNetLog::Make(net_log, net::NetLogSourceType::DISK_CACHE_ENTRY);
+ net_log_ = net::NetLogWithSource::Make(
+ net_log, net::NetLogSourceType::DISK_CACHE_ENTRY);
net_log_.BeginEvent(net::NetLogEventType::DISK_CACHE_ENTRY_IMPL,
CreateNetLogEntryCreationCallback(this, created));
}
-const net::BoundNetLog& EntryImpl::net_log() const {
+const net::NetLogWithSource& EntryImpl::net_log() const {
return net_log_;
}

Powered by Google App Engine
This is Rietveld 408576698