Index: third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.cpp |
diff --git a/third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.cpp b/third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.cpp |
index ceca5de33508124efd16201b5b4fdb79daf2634f..801b3805344b898f072133974f5e5f1b73e01073 100644 |
--- a/third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.cpp |
+++ b/third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.cpp |
@@ -29,7 +29,6 @@ |
#include "core/html/parser/HTMLDocumentParser.h" |
#include "core/html/parser/TextResourceDecoder.h" |
#include "core/html/parser/XSSAuditor.h" |
-#include "platform/Task.h" |
#include "platform/ThreadSafeFunctional.h" |
#include "public/platform/Platform.h" |
#include "public/platform/WebTaskRunner.h" |
@@ -296,7 +295,7 @@ void BackgroundHTMLParser::sendTokensToMainThread() |
if (isEmpty) { |
m_loadingTaskRunner->postTask( |
BLINK_FROM_HERE, |
- new Task(threadSafeBind(&HTMLDocumentParser::notifyPendingParsedChunks, AllowCrossThreadAccess(m_parser)))); |
+ threadSafeBind(&HTMLDocumentParser::notifyPendingParsedChunks, AllowCrossThreadAccess(m_parser))); |
} |
m_pendingTokens = adoptPtr(new CompactHTMLTokenStream); |