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

Unified Diff: net/http/http_cache_transaction.cc

Issue 2661333002: Track SimpleCache memory usage in net/ MemoryDumpProvider (Closed)
Patch Set: address comments Created 3 years, 10 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/http/http_cache_transaction.cc
diff --git a/net/http/http_cache_transaction.cc b/net/http/http_cache_transaction.cc
index 0e557c05b2f84c232c36291fde0ee00803538927..ede3541aa4010750256d9acb89f3140bf6938def 100644
--- a/net/http/http_cache_transaction.cc
+++ b/net/http/http_cache_transaction.cc
@@ -577,6 +577,11 @@ void HttpCache::Transaction::GetConnectionAttempts(
old_connection_attempts_.end());
}
+size_t HttpCache::Transaction::EstimateMemoryUsage() const {
+ // TODO(xunjieli): Consider improving the coverage. crbug.com/669108.
+ return 0;
+}
+
//-----------------------------------------------------------------------------
// A few common patterns: (Foo* means Foo -> FooComplete)

Powered by Google App Engine
This is Rietveld 408576698