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

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

Issue 2474073005: DevTools: add the logging aspect into the PerformanceMonitor (Closed)
Patch Set: test fixed Created 4 years, 1 month 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 1d4dbda772ab9ed214f5c6f7e74b3394b8dd1624..ed4e3ee586ad526cab5b7f884d0ea0af6b7f0d5b 100644
--- a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
+++ b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
@@ -69,7 +69,8 @@ void WorkerInspectorController::connectFrontend() {
m_session = new InspectorSession(this, m_instrumentingAgents.get(), 0,
m_debugger->v8Inspector(),
m_debugger->contextGroupId(), nullptr);
- m_session->append(new InspectorLogAgent(m_thread->consoleMessageStorage()));
+ m_session->append(
+ new InspectorLogAgent(m_thread->consoleMessageStorage(), nullptr));
m_thread->workerBackingThread().backingThread().addTaskObserver(this);
}

Powered by Google App Engine
This is Rietveld 408576698