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

Unified Diff: Source/core/workers/WorkerThread.cpp

Issue 307943002: Oilpan: Prepare moving InspectorController and InspectorAgents to oilpan. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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: Source/core/workers/WorkerThread.cpp
diff --git a/Source/core/workers/WorkerThread.cpp b/Source/core/workers/WorkerThread.cpp
index b04391a18c04666cd2b1d94e7c2d2366d1203f90..e39a24eeba2fddfbe80040ae5d8b44f0fd0d4589 100644
--- a/Source/core/workers/WorkerThread.cpp
+++ b/Source/core/workers/WorkerThread.cpp
@@ -30,6 +30,8 @@
#include "bindings/v8/ScriptSourceCode.h"
#include "core/inspector/InspectorInstrumentation.h"
+#include "core/inspector/WorkerDebuggerAgent.h"
+#include "core/inspector/WorkerInspectorController.h"
#include "core/workers/DedicatedWorkerGlobalScope.h"
#include "core/workers/WorkerClients.h"
#include "core/workers/WorkerReportingProxy.h"
@@ -102,12 +104,17 @@ void WorkerThread::workerThreadStart(void* thread)
static_cast<WorkerThread*>(thread)->workerThread();
}
+void WorkerThread::interruptAndDispatchInspectorCommands()
+{
+ if (m_workerDebuggerAgent)
+ m_workerDebuggerAgent->interruptAndDispatchInspectorCommands(this);
+}
+
void WorkerThread::workerThread()
{
KURL scriptURL = m_startupData->m_scriptURL;
String sourceCode = m_startupData->m_sourceCode;
WorkerThreadStartMode startMode = m_startupData->m_startMode;
-
{
MutexLocker lock(m_threadCreationMutex);
ThreadState::attach();
@@ -134,6 +141,7 @@ void WorkerThread::workerThread()
script->evaluate(ScriptSourceCode(sourceCode, scriptURL));
runEventLoop();
+ m_workerDebuggerAgent.clear();
// This should be called before we start the shutdown procedure.
workerReportingProxy().willDestroyWorkerGlobalScope();

Powered by Google App Engine
This is Rietveld 408576698