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

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

Issue 1713143002: Remove most of the blink::Task wrapping of WTF::Function outside WebTaskRunner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 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
Index: third_party/WebKit/Source/core/html/parser/HTMLParserThread.cpp
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLParserThread.cpp b/third_party/WebKit/Source/core/html/parser/HTMLParserThread.cpp
index c7885d4c71598b09d975c0be04bbe9643b60d5d5..bdc0556077767179bc689a8bb392a4e98d45ffa4 100644
--- a/third_party/WebKit/Source/core/html/parser/HTMLParserThread.cpp
+++ b/third_party/WebKit/Source/core/html/parser/HTMLParserThread.cpp
@@ -30,7 +30,6 @@
#include "core/html/parser/HTMLParserThread.h"
-#include "platform/Task.h"
#include "platform/ThreadSafeFunctional.h"
#include "platform/WaitableEvent.h"
#include "platform/heap/SafePoint.h"
@@ -103,7 +102,7 @@ bool HTMLParserThread::isRunning()
void HTMLParserThread::postTask(PassOwnPtr<Closure> closure)
{
- platformThread().taskRunner()->postTask(BLINK_FROM_HERE, new Task(closure));
+ platformThread().taskRunner()->postTask(BLINK_FROM_HERE, closure);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698