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

Unified Diff: Source/core/html/parser/HTMLParserThread.cpp

Issue 1111693003: Remove the concept of a cleanup task (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Review comments. Created 5 years, 7 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: Source/core/html/parser/HTMLParserThread.cpp
diff --git a/Source/core/html/parser/HTMLParserThread.cpp b/Source/core/html/parser/HTMLParserThread.cpp
index 18d8e5ea1ef7b7015848ca8124625dacc04d6b6b..b7eec5984f413a0d97da253daf62dbb54ec7f711 100644
--- a/Source/core/html/parser/HTMLParserThread.cpp
+++ b/Source/core/html/parser/HTMLParserThread.cpp
@@ -58,7 +58,7 @@ void HTMLParserThread::init()
void HTMLParserThread::setupHTMLParserThread()
{
ASSERT(m_thread);
- m_thread->attachGC();
+ m_thread->initialize();
}
void HTMLParserThread::shutdown()
@@ -74,7 +74,7 @@ void HTMLParserThread::shutdown()
void HTMLParserThread::cleanupHTMLParserThread()
{
- m_thread->detachGC();
+ m_thread->shutdown();
}
HTMLParserThread* HTMLParserThread::shared()

Powered by Google App Engine
This is Rietveld 408576698