Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ScriptStreamerThread.cpp

Issue 1713143002: Remove most of the blink::Task wrapping of WTF::Function outside WebTaskRunner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698