| Index: third_party/WebKit/Source/core/CoreInitializer.cpp
|
| diff --git a/third_party/WebKit/Source/core/CoreInitializer.cpp b/third_party/WebKit/Source/core/CoreInitializer.cpp
|
| index 009f4dd7722ea5f4c52eaa4f23e61434b9b0bb40..3c1c3843b16f14ba90b78695362d0e773b0e0454 100644
|
| --- a/third_party/WebKit/Source/core/CoreInitializer.cpp
|
| +++ b/third_party/WebKit/Source/core/CoreInitializer.cpp
|
| @@ -49,7 +49,6 @@
|
| #include "core/dom/StyleChangeReason.h"
|
| #include "core/events/EventFactory.h"
|
| #include "core/fetch/FetchInitiatorTypeNames.h"
|
| -#include "core/fetch/WebCacheMemoryDumpProvider.h"
|
| #include "core/html/canvas/CanvasRenderingContextFactory.h"
|
| #include "core/html/parser/HTMLParserThread.h"
|
| #include "core/workers/WorkerThread.h"
|
| @@ -138,8 +137,6 @@ void CoreInitializer::initialize()
|
|
|
| StringImpl::freezeStaticStrings();
|
|
|
| - Platform::current()->registerMemoryDumpProvider(WebCacheMemoryDumpProvider::instance(), "MemoryCache");
|
| -
|
| // Creates HTMLParserThread::shared and ScriptStreamerThread::shared, but
|
| // does not start the threads.
|
| HTMLParserThread::init();
|
| @@ -157,8 +154,6 @@ void CoreInitializer::shutdown()
|
| ASSERT(Platform::current());
|
| HTMLParserThread::shutdown();
|
|
|
| - Platform::current()->unregisterMemoryDumpProvider(WebCacheMemoryDumpProvider::instance());
|
| -
|
| WorkerThread::terminateAndWaitForAllWorkers();
|
| }
|
|
|
|
|