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

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

Issue 1924663006: [DevTools] Move API methods from V8RuntimeAgent to V8InspectorSession. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@debugger-into-session
Patch Set: rebased Created 4 years, 8 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 50909941c167e819eef5435aee53098a11bbd0f3..3922f60a57fa4b21b9172b6da26a947ee285b302 100644
--- a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
+++ b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
@@ -81,7 +81,7 @@ void WorkerInspectorController::connectFrontend()
m_session->append(WorkerDebuggerAgent::create(m_v8Session->debuggerAgent(), m_workerGlobalScope));
m_session->append(InspectorProfilerAgent::create(m_v8Session->profilerAgent(), nullptr));
m_session->append(InspectorHeapProfilerAgent::create(m_v8Session->heapProfilerAgent()));
- m_session->append(WorkerConsoleAgent::create(m_v8Session->runtimeAgent(), m_workerGlobalScope));
+ m_session->append(new WorkerConsoleAgent(m_v8Session.get(), m_workerGlobalScope));
m_session->attach(m_v8Session.get(), nullptr);
}

Powered by Google App Engine
This is Rietveld 408576698