Index: Source/platform/exported/Platform.cpp |
diff --git a/Source/platform/exported/Platform.cpp b/Source/platform/exported/Platform.cpp |
index 5f22defe5cb634e309ff135b4feb0f7721094521..b6491f6c3256c9b6a376d869b3b1f8b8b60366af 100644 |
--- a/Source/platform/exported/Platform.cpp |
+++ b/Source/platform/exported/Platform.cpp |
@@ -30,7 +30,6 @@ |
#include "config.h" |
#include "platform/PartitionAllocMemoryDumpProvider.h" |
-#include "platform/heap/BlinkGCMemoryDumpProvider.h" |
#include "public/platform/Platform.h" |
namespace blink { |
@@ -51,7 +50,6 @@ void Platform::initialize(Platform* platform) |
// TODO(ssid): remove this check after fixing crbug.com/486782. |
if (s_platform && s_platform->m_mainThread) { |
s_platform->registerMemoryDumpProvider(PartitionAllocMemoryDumpProvider::instance()); |
- s_platform->registerMemoryDumpProvider(BlinkGCMemoryDumpProvider::instance()); |
} |
} |
@@ -59,7 +57,6 @@ void Platform::shutdown() |
{ |
if (s_platform->m_mainThread) { |
s_platform->unregisterMemoryDumpProvider(PartitionAllocMemoryDumpProvider::instance()); |
- s_platform->unregisterMemoryDumpProvider(BlinkGCMemoryDumpProvider::instance()); |
} |
if (s_platform) |