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

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

Issue 847803002: Make ScriptStreamer and dependents Oilpan friendly. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add ScriptSourceCode::isNull() comment Created 5 years, 11 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
« no previous file with comments | « Source/core/inspector/WorkerInspectorController.h ('k') | Source/core/loader/WorkerLoaderClientBridge.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/WorkerInspectorController.cpp
diff --git a/Source/core/inspector/WorkerInspectorController.cpp b/Source/core/inspector/WorkerInspectorController.cpp
index 6c0546d4d5be7a98d1e38adfc107f9f3a0bb122b..bd6dd1d709ec43981e5322cfa1d2bf0ef0504351 100644
--- a/Source/core/inspector/WorkerInspectorController.cpp
+++ b/Source/core/inspector/WorkerInspectorController.cpp
@@ -95,7 +95,7 @@ WorkerInspectorController::WorkerInspectorController(WorkerGlobalScope* workerGl
, m_state(adoptPtrWillBeNoop(new InspectorCompositeState(m_stateClient.get())))
, m_instrumentingAgents(InstrumentingAgents::create())
, m_injectedScriptManager(InjectedScriptManager::createForWorker())
- , m_debugServer(adoptPtr(new WorkerScriptDebugServer(workerGlobalScope)))
+ , m_debugServer(WorkerScriptDebugServer::create(workerGlobalScope))
, m_agents(m_instrumentingAgents.get(), m_state.get())
{
m_agents.append(WorkerRuntimeAgent::create(m_injectedScriptManager.get(), m_debugServer.get(), workerGlobalScope));
@@ -189,6 +189,7 @@ void WorkerInspectorController::trace(Visitor* visitor)
visitor->trace(m_state);
visitor->trace(m_instrumentingAgents);
visitor->trace(m_injectedScriptManager);
+ visitor->trace(m_debugServer);
visitor->trace(m_backendDispatcher);
visitor->trace(m_agents);
visitor->trace(m_workerDebuggerAgent);
« no previous file with comments | « Source/core/inspector/WorkerInspectorController.h ('k') | Source/core/loader/WorkerLoaderClientBridge.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698