| 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);
|
| }
|
|
|