Chromium Code Reviews| Index: Source/core/workers/WorkerThread.cpp |
| diff --git a/Source/core/workers/WorkerThread.cpp b/Source/core/workers/WorkerThread.cpp |
| index 7d6efc7e0b26cba91178b60b26e619b6bdb76e67..f68c1a313082f72232681a7b702657ebc0ef6579 100644 |
| --- a/Source/core/workers/WorkerThread.cpp |
| +++ b/Source/core/workers/WorkerThread.cpp |
| @@ -228,8 +228,6 @@ void WorkerThread::stop() |
| // Ensure that tasks are being handled by thread event loop. If script execution weren't forbidden, a while(1) loop in JS could keep the thread alive forever. |
| if (m_workerGlobalScope) { |
| m_workerGlobalScope->script()->scheduleExecutionTermination(); |
| - |
| - DatabaseManager::manager().interruptAllDatabasesForContext(m_workerGlobalScope.get()); |
|
adamk
2014/02/27 17:28:26
I've been curious for awhile about why this line w
jochen (gone - plz use gerrit)
2014/02/27 19:40:55
There might be SQLTransaction steps in the message
|
| m_runLoop.postTaskAndTerminate(WorkerThreadShutdownStartTask::create()); |
| return; |
| } |