| Index: third_party/WebKit/Source/bindings/core/v8/ScriptStreamerThread.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptStreamerThread.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptStreamerThread.cpp
|
| index 2853e7616d2a50de5b77bfedc48329d9f064b544..4b7027cf572c8a871b82f0c6120ecce654ed255e 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ScriptStreamerThread.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ScriptStreamerThread.cpp
|
| @@ -5,12 +5,11 @@
|
| #include "bindings/core/v8/ScriptStreamerThread.h"
|
|
|
| #include "bindings/core/v8/ScriptStreamer.h"
|
| -#include "platform/Task.h"
|
| #include "platform/TraceEvent.h"
|
| #include "public/platform/Platform.h"
|
| +#include "public/platform/WebTaskRunner.h"
|
| #include "public/platform/WebTraceLocation.h"
|
| #include "wtf/MainThread.h"
|
| -#include "wtf/PassOwnPtr.h"
|
|
|
| namespace blink {
|
|
|
| @@ -54,7 +53,7 @@ ScriptStreamerThread* ScriptStreamerThread::shared()
|
| return s_sharedThread;
|
| }
|
|
|
| -void ScriptStreamerThread::postTask(WebTaskRunner::Task* task)
|
| +void ScriptStreamerThread::postTask(PassOwnPtr<Closure> task)
|
| {
|
| ASSERT(isMainThread());
|
| MutexLocker locker(m_mutex);
|
|
|