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

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

Issue 1115553002: Removing blink::prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 8 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 | « Source/core/html/parser/HTMLParserThread.h ('k') | Source/core/html/parser/HTMLResourcePreloader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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");
« no previous file with comments | « Source/core/html/parser/HTMLParserThread.h ('k') | Source/core/html/parser/HTMLResourcePreloader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698