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

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

Issue 1303153005: Introduce WebTaskRunner Patch 3/5 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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 b7eec5984f413a0d97da253daf62dbb54ec7f711..e56310edf20dedc8543fa0983c0a40c4bf4961ad 100644
--- a/Source/core/html/parser/HTMLParserThread.cpp
+++ b/Source/core/html/parser/HTMLParserThread.cpp
@@ -98,7 +98,7 @@ bool HTMLParserThread::isRunning()
void HTMLParserThread::postTask(PassOwnPtr<Closure> closure)
{
- platformThread().postTask(FROM_HERE, new Task(closure));
+ platformThread().defaultTaskRunner()->postTask(FROM_HERE, new Task(closure));
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698