| Index: third_party/WebKit/Source/core/workers/WorkerThreadTestHelper.h
|
| diff --git a/third_party/WebKit/Source/core/workers/WorkerThreadTestHelper.h b/third_party/WebKit/Source/core/workers/WorkerThreadTestHelper.h
|
| index 32ed1a2f93a67bd346011c12dc2c1a36189eedda..2271421d2cdd0ab35110c62908147b70b402eee7 100644
|
| --- a/third_party/WebKit/Source/core/workers/WorkerThreadTestHelper.h
|
| +++ b/third_party/WebKit/Source/core/workers/WorkerThreadTestHelper.h
|
| @@ -14,7 +14,7 @@
|
| #include "core/workers/WorkerThread.h"
|
| #include "core/workers/WorkerThreadLifecycleObserver.h"
|
| #include "core/workers/WorkerThreadStartupData.h"
|
| -#include "platform/ThreadSafeFunctional.h"
|
| +#include "platform/CrossThreadFunctional.h"
|
| #include "platform/WaitableEvent.h"
|
| #include "platform/WebThreadSupportingGC.h"
|
| #include "platform/heap/Handle.h"
|
| @@ -132,7 +132,7 @@ public:
|
| void waitForInit()
|
| {
|
| std::unique_ptr<WaitableEvent> completionEvent = wrapUnique(new WaitableEvent());
|
| - workerBackingThread().backingThread().postTask(BLINK_FROM_HERE, threadSafeBind(&WaitableEvent::signal, crossThreadUnretained(completionEvent.get())));
|
| + workerBackingThread().backingThread().postTask(BLINK_FROM_HERE, crossThreadBind(&WaitableEvent::signal, crossThreadUnretained(completionEvent.get())));
|
| completionEvent->wait();
|
| }
|
|
|
|
|