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

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

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.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptStreamerThread.h b/third_party/WebKit/Source/bindings/core/v8/ScriptStreamerThread.h
index 9254ca59053c27754be6e1d18622e94a4e56c6b5..7fd2f87c91c30b703e10b557a9910e6558381474 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptStreamerThread.h
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptStreamerThread.h
@@ -7,9 +7,10 @@
#include "core/CoreExport.h"
#include "platform/TaskSynchronizer.h"
-#include "public/platform/WebTaskRunner.h"
#include "public/platform/WebThread.h"
+#include "wtf/Functional.h"
#include "wtf/OwnPtr.h"
+#include "wtf/PassOwnPtr.h"
#include <v8.h>
@@ -26,7 +27,7 @@ public:
static void shutdown();
static ScriptStreamerThread* shared();
- void postTask(WebTaskRunner::Task*);
+ void postTask(WTF::PassOwnPtr<WTF::Closure>);
bool isRunningTask() const
{

Powered by Google App Engine
This is Rietveld 408576698