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

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

Issue 1609943003: Make platform/heap to use USING_FAST_MALLOC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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/WebCacheMemoryDumpProvider.h
diff --git a/third_party/WebKit/Source/core/fetch/WebCacheMemoryDumpProvider.h b/third_party/WebKit/Source/core/fetch/WebCacheMemoryDumpProvider.h
index ba0994f2bd5479f13b30e41b8c24ba5171459230..d1955721565bf3641f9e1ffa95fcffccb4b5f41e 100644
--- a/third_party/WebKit/Source/core/fetch/WebCacheMemoryDumpProvider.h
+++ b/third_party/WebKit/Source/core/fetch/WebCacheMemoryDumpProvider.h
@@ -9,6 +9,7 @@
#include "platform/heap/Handle.h"
#include "public/platform/WebCommon.h"
#include "public/platform/WebMemoryDumpProvider.h"
+#include "wtf/Allocator.h"
#include "wtf/MainThread.h"
namespace blink {
@@ -16,6 +17,7 @@ namespace blink {
// This class is wrapper around MemoryCache to take memory snapshots. It dumps
// the stats of cache only after the cache is created.
class CORE_EXPORT WebCacheMemoryDumpProvider final : public WebMemoryDumpProvider {
+ USING_FAST_MALLOC(WebCacheMemoryDumpProvider);
public:
// This class is singleton since there is a global MemoryCache object.
static WebCacheMemoryDumpProvider* instance();

Powered by Google App Engine
This is Rietveld 408576698