| Index: third_party/WebKit/Source/core/workers/WorkerThreadTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/workers/WorkerThreadTest.cpp b/third_party/WebKit/Source/core/workers/WorkerThreadTest.cpp
|
| index fd0514d5ee075156b049b543199e96492406ea11..e96b1a3f44ceb3602e38a6ff567ad4699be25e85 100644
|
| --- a/third_party/WebKit/Source/core/workers/WorkerThreadTest.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/WorkerThreadTest.cpp
|
| @@ -27,8 +27,10 @@ void waitForSignalTask(WorkerThread* workerThread,
|
| EXPECT_TRUE(workerThread->isCurrentThread());
|
|
|
| // Notify the main thread that the debugger task is waiting for the signal.
|
| - Platform::current()->mainThread()->getWebTaskRunner()->postTask(
|
| - BLINK_FROM_HERE, crossThreadBind(&testing::exitRunLoop));
|
| + workerThread->workerReportingProxy()
|
| + .getParentFrameTaskRunners()
|
| + ->get(TaskType::Internal)
|
| + ->postTask(BLINK_FROM_HERE, crossThreadBind(&testing::exitRunLoop));
|
| waitableEvent->wait();
|
| }
|
|
|
|
|