Index: Source/core/Init.cpp |
diff --git a/Source/core/Init.cpp b/Source/core/Init.cpp |
index b48d1f6f79fbfb75f86c728539d78f9ff6291c21..4af3b4ca6504aa68f75ce2326949c60c41e442c3 100644 |
--- a/Source/core/Init.cpp |
+++ b/Source/core/Init.cpp |
@@ -44,7 +44,6 @@ |
#include "XMLNSNames.h" |
#include "XMLNames.h" |
#include "core/css/MediaFeatureNames.h" |
-#include "core/html/parser/HTMLParserThread.h" |
#include "heap/Heap.h" |
#include "platform/EventTracer.h" |
#include "platform/Partitions.h" |
@@ -86,16 +85,10 @@ void init() |
PlatformThreadData::current(); |
StringImpl::freezeStaticStrings(); |
- |
- // Creates HTMLParserThread::shared, but does not start the thread. |
- HTMLParserThread::init(); |
} |
void shutdown() |
{ |
- // Make sure we stop the HTMLParserThread before Platform::current() is cleared. |
- HTMLParserThread::shutdown(); |
- |
Partitions::shutdown(); |
} |