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

Unified Diff: third_party/WebKit/Source/platform/WebThreadSupportingGC.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/platform/WebThreadSupportingGC.h
diff --git a/third_party/WebKit/Source/platform/WebThreadSupportingGC.h b/third_party/WebKit/Source/platform/WebThreadSupportingGC.h
index 792faef93af740b9f7821f77cfae84f7fef43ba6..b9fb4e799972d03e2c7eb940a53c2ea4e0b50d9e 100644
--- a/third_party/WebKit/Source/platform/WebThreadSupportingGC.h
+++ b/third_party/WebKit/Source/platform/WebThreadSupportingGC.h
@@ -33,12 +33,12 @@ public:
static PassOwnPtr<WebThreadSupportingGC> createForThread(WebThread*);
~WebThreadSupportingGC();
- void postTask(const WebTraceLocation& location, WebTaskRunner::Task* task)
+ void postTask(const WebTraceLocation& location, PassOwnPtr<Closure> task)
{
m_thread->taskRunner()->postTask(location, task);
}
- void postDelayedTask(const WebTraceLocation& location, WebTaskRunner::Task* task, long long delayMs)
+ void postDelayedTask(const WebTraceLocation& location, PassOwnPtr<Closure> task, long long delayMs)
{
m_thread->taskRunner()->postDelayedTask(location, task, delayMs);
}
« no previous file with comments | « third_party/WebKit/Source/platform/WebScheduler.cpp ('k') | third_party/WebKit/Source/platform/audio/HRTFDatabaseLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698