Index: third_party/WebKit/Source/core/loader/DocumentThreadableLoader.cpp |
diff --git a/third_party/WebKit/Source/core/loader/DocumentThreadableLoader.cpp b/third_party/WebKit/Source/core/loader/DocumentThreadableLoader.cpp |
index 0980465e94369a8a8140e9b2ccb7c210f24cf515..3ccd49cd1c31458e5bddbbb9b6ba3dea04684a08 100644 |
--- a/third_party/WebKit/Source/core/loader/DocumentThreadableLoader.cpp |
+++ b/third_party/WebKit/Source/core/loader/DocumentThreadableLoader.cpp |
@@ -50,7 +50,6 @@ |
#include "core/page/ChromeClient.h" |
#include "core/page/Page.h" |
#include "platform/SharedBuffer.h" |
-#include "platform/Task.h" |
#include "platform/network/ResourceRequest.h" |
#include "platform/weborigin/SchemeRegistry.h" |
#include "platform/weborigin/SecurityOrigin.h" |
@@ -68,7 +67,7 @@ private: |
public: |
explicit EmptyDataReader(WebDataConsumerHandle::Client* client) : m_factory(this) |
{ |
- Platform::current()->currentThread()->taskRunner()->postTask(BLINK_FROM_HERE, new Task(bind(&EmptyDataReader::notify, m_factory.createWeakPtr(), client))); |
+ Platform::current()->currentThread()->taskRunner()->postTask(BLINK_FROM_HERE, bind(&EmptyDataReader::notify, m_factory.createWeakPtr(), client)); |
} |
private: |
Result beginRead(const void** buffer, WebDataConsumerHandle::Flags, size_t *available) override |