Index: Source/core/html/parser/HTMLParserThread.cpp |
diff --git a/Source/core/html/parser/HTMLParserThread.cpp b/Source/core/html/parser/HTMLParserThread.cpp |
index 879b6bb67bf61e7dbe17b23b71210dab958197b3..18d8e5ea1ef7b7015848ca8124625dacc04d6b6b 100644 |
--- a/Source/core/html/parser/HTMLParserThread.cpp |
+++ b/Source/core/html/parser/HTMLParserThread.cpp |
@@ -65,7 +65,7 @@ void HTMLParserThread::shutdown() |
{ |
ASSERT(s_sharedThread); |
// currentThread will always be non-null in production, but can be null in Chromium unit tests. |
- if (blink::Platform::current()->currentThread() && s_sharedThread->isRunning()) { |
+ if (Platform::current()->currentThread() && s_sharedThread->isRunning()) { |
s_sharedThread->postTask(threadSafeBind(&HTMLParserThread::cleanupHTMLParserThread, AllowCrossThreadAccess(s_sharedThread))); |
} |
delete s_sharedThread; |
@@ -82,7 +82,7 @@ HTMLParserThread* HTMLParserThread::shared() |
return s_sharedThread; |
} |
-blink::WebThread& HTMLParserThread::platformThread() |
+WebThread& HTMLParserThread::platformThread() |
{ |
if (!isRunning()) { |
m_thread = WebThreadSupportingGC::create("HTMLParserThread"); |