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

Unified Diff: net/disk_cache/memory/mem_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/memory/mem_entry_impl.cc
diff --git a/net/disk_cache/memory/mem_entry_impl.cc b/net/disk_cache/memory/mem_entry_impl.cc
index a568a95d730b01447a7e0609dfaa492415bc294b..cfe23e75cf70066caf36a89ec77b05ded1f5af03 100644
--- a/net/disk_cache/memory/mem_entry_impl.cc
+++ b/net/disk_cache/memory/mem_entry_impl.cc
@@ -270,8 +270,8 @@ MemEntryImpl::MemEntryImpl(MemBackendImpl* backend,
backend_(backend),
doomed_(false) {
backend_->OnEntryInserted(this);
- net_log_ = net::BoundNetLog::Make(net_log,
- net::NetLogSourceType::MEMORY_CACHE_ENTRY);
+ net_log_ = net::NetLogWithSource::Make(
+ net_log, net::NetLogSourceType::MEMORY_CACHE_ENTRY);
net_log_.BeginEvent(net::NetLogEventType::DISK_CACHE_MEM_ENTRY_IMPL,
base::Bind(&NetLogEntryCreationCallback, this));
}

Powered by Google App Engine
This is Rietveld 408576698