Index: third_party/WebKit/Source/modules/fetch/DataConsumerHandleUtil.cpp |
diff --git a/third_party/WebKit/Source/modules/fetch/DataConsumerHandleUtil.cpp b/third_party/WebKit/Source/modules/fetch/DataConsumerHandleUtil.cpp |
index a18b431714d049f8498ccdc85d64986c2b1f3960..88d3860313033c83f301fa8cad754cc0c352eec8 100644 |
--- a/third_party/WebKit/Source/modules/fetch/DataConsumerHandleUtil.cpp |
+++ b/third_party/WebKit/Source/modules/fetch/DataConsumerHandleUtil.cpp |
@@ -4,9 +4,9 @@ |
#include "modules/fetch/DataConsumerHandleUtil.h" |
-#include "platform/Task.h" |
#include "platform/blob/BlobData.h" |
#include "public/platform/Platform.h" |
+#include "public/platform/WebTaskRunner.h" |
#include "public/platform/WebThread.h" |
#include "public/platform/WebTraceLocation.h" |
#include "wtf/Functional.h" |
@@ -129,7 +129,7 @@ NotifyOnReaderCreationHelper::NotifyOnReaderCreationHelper(WebDataConsumerHandle |
return; |
// Note we don't need thread safety here because this object is |
// bound to the current thread. |
- Platform::current()->currentThread()->taskRunner()->postTask(BLINK_FROM_HERE, new Task(bind(&NotifyOnReaderCreationHelper::notify, m_factory.createWeakPtr(), client))); |
+ Platform::current()->currentThread()->taskRunner()->postTask(BLINK_FROM_HERE, bind(&NotifyOnReaderCreationHelper::notify, m_factory.createWeakPtr(), client)); |
} |
void NotifyOnReaderCreationHelper::notify(WebDataConsumerHandle::Client* client) |