Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(473)

Unified Diff: third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp

Issue 2041753002: Worker: Protect a running debugger task from forcible worker termination (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tweak if-condition Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
diff --git a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
index 90f3f5d214e98d6770d4d4743e6c0c557e5e90ea..ca14f5f90c8990959ce0786cbb1b40c58a5d2a08 100644
--- a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
+++ b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
@@ -97,7 +97,7 @@ void WorkerInspectorController::dispose()
void WorkerInspectorController::resumeStartup()
{
- m_workerGlobalScope->thread()->stopRunningDebuggerTasksOnPause();
+ m_workerGlobalScope->thread()->stopRunningDebuggerTasksOnPauseOnWorkerThread();
}
void WorkerInspectorController::sendProtocolMessage(int sessionId, int callId, const String& response, const String& state)

Powered by Google App Engine
This is Rietveld 408576698