| Index: third_party/WebKit/Source/platform/heap/GCTaskRunner.h
|
| diff --git a/third_party/WebKit/Source/platform/heap/GCTaskRunner.h b/third_party/WebKit/Source/platform/heap/GCTaskRunner.h
|
| index 8ef05d6854fb04fd54d7bb1d1aa49667e2d8dc72..cbf72d712227cf8043afa6e38b542c524bc83485 100644
|
| --- a/third_party/WebKit/Source/platform/heap/GCTaskRunner.h
|
| +++ b/third_party/WebKit/Source/platform/heap/GCTaskRunner.h
|
| @@ -31,7 +31,7 @@
|
| #ifndef GCTaskRunner_h
|
| #define GCTaskRunner_h
|
|
|
| -#include "platform/ThreadSafeFunctional.h"
|
| +#include "platform/CrossThreadFunctional.h"
|
| #include "platform/heap/ThreadState.h"
|
| #include "public/platform/WebTaskRunner.h"
|
| #include "public/platform/WebThread.h"
|
| @@ -50,7 +50,7 @@ public:
|
| // GCTask has an empty run() method. Its only purpose is to guarantee
|
| // that MessageLoop will have a task to process which will result
|
| // in GCTaskRunner::didProcessTask being executed.
|
| - m_taskRunner->postTask(BLINK_FROM_HERE, threadSafeBind(&runGCTask));
|
| + m_taskRunner->postTask(BLINK_FROM_HERE, crossThreadBind(&runGCTask));
|
| }
|
|
|
| private:
|
|
|