| 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 184365c756c8b3e46369f68a6ad844136ecffbf0..598afe5a3d06d819fd29a02f198b40e0342469a1 100644
|
| --- a/third_party/WebKit/Source/platform/WebThreadSupportingGC.h
|
| +++ b/third_party/WebKit/Source/platform/WebThreadSupportingGC.h
|
| @@ -32,12 +32,12 @@ public:
|
| static std::unique_ptr<WebThreadSupportingGC> createForThread(WebThread*, bool perThreadHeapEnabled = false);
|
| ~WebThreadSupportingGC();
|
|
|
| - void postTask(const WebTraceLocation& location, std::unique_ptr<SameThreadClosure> task)
|
| + void postTask(const WebTraceLocation& location, std::unique_ptr<WTF::Closure> task)
|
| {
|
| m_thread->getWebTaskRunner()->postTask(location, std::move(task));
|
| }
|
|
|
| - void postDelayedTask(const WebTraceLocation& location, std::unique_ptr<SameThreadClosure> task, long long delayMs)
|
| + void postDelayedTask(const WebTraceLocation& location, std::unique_ptr<WTF::Closure> task, long long delayMs)
|
| {
|
| m_thread->getWebTaskRunner()->postDelayedTask(location, std::move(task), delayMs);
|
| }
|
|
|