| Index: third_party/WebKit/Source/core/workers/WorkerThread.cpp
|
| diff --git a/third_party/WebKit/Source/core/workers/WorkerThread.cpp b/third_party/WebKit/Source/core/workers/WorkerThread.cpp
|
| index 43970ce0cf1bf9b479f276cd78d41a30f9ce2ec8..cd487257bd6692e0db6244b48959d0e3532bae12 100644
|
| --- a/third_party/WebKit/Source/core/workers/WorkerThread.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/WorkerThread.cpp
|
| @@ -225,11 +225,8 @@ void WorkerThread::startRunningDebuggerTasksOnPauseOnWorkerThread() {
|
| ThreadDebugger::idleStarted(isolate());
|
| std::unique_ptr<CrossThreadClosure> task;
|
| do {
|
| - {
|
| - SafePointScope safePointScope(BlinkGC::HeapPointersOnStack);
|
| - task =
|
| - m_inspectorTaskRunner->takeNextTask(InspectorTaskRunner::WaitForTask);
|
| - }
|
| + task =
|
| + m_inspectorTaskRunner->takeNextTask(InspectorTaskRunner::WaitForTask);
|
| if (task)
|
| (*task)();
|
| // Keep waiting until execution is resumed.
|
|
|