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 |