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

Unified Diff: Source/core/Init.cpp

Issue 100563004: Redirect HTML resource bytes directly to parser thread (Blink side CL) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@parserthread_decodermove
Patch Set: Created 6 years, 10 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
« no previous file with comments | « no previous file | Source/core/core.gypi » ('j') | Source/core/html/parser/HTMLDocumentParser.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
}
« no previous file with comments | « no previous file | Source/core/core.gypi » ('j') | Source/core/html/parser/HTMLDocumentParser.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698