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

Unified Diff: third_party/WebKit/Source/core/fetch/MemoryCache.h

Issue 2337733002: [tracing] Support BACKGROUND mode in MemoryCache dump provider (Closed)
Patch Set: remove trace_event change. 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: third_party/WebKit/Source/core/fetch/MemoryCache.h
diff --git a/third_party/WebKit/Source/core/fetch/MemoryCache.h b/third_party/WebKit/Source/core/fetch/MemoryCache.h
index f6ab58b65c889d129913074e9e07878e57d57056..f4891830044fcca7b9b94336e5d4446587b55342 100644
--- a/third_party/WebKit/Source/core/fetch/MemoryCache.h
+++ b/third_party/WebKit/Source/core/fetch/MemoryCache.h
@@ -137,6 +137,7 @@ public:
size_t liveSize;
size_t decodedSize;
size_t encodedSize;
+ size_t overheadSize;
size_t encodedSizeDuplicatedInDataURLs;
TypeStatistic()
@@ -145,6 +146,7 @@ public:
, liveSize(0)
, decodedSize(0)
, encodedSize(0)
+ , overheadSize(0)
, encodedSizeDuplicatedInDataURLs(0)
{
}
« no previous file with comments | « third_party/WebKit/Source/core/fetch/ImageResource.cpp ('k') | third_party/WebKit/Source/core/fetch/MemoryCache.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698