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

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

Issue 1774323002: [DevTools] Remove extra plumbing from InspectorWorkerAgent, prepare to multi-client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed leaks Created 4 years, 9 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/ConsoleMessage.cpp
diff --git a/third_party/WebKit/Source/core/inspector/ConsoleMessage.cpp b/third_party/WebKit/Source/core/inspector/ConsoleMessage.cpp
index c3ac02818e07738efb9cd00202de125558f30c1c..012e8d163bfa7979bcc6c20175a0be403c7f9a08 100644
--- a/third_party/WebKit/Source/core/inspector/ConsoleMessage.cpp
+++ b/third_party/WebKit/Source/core/inspector/ConsoleMessage.cpp
@@ -7,6 +7,7 @@
#include "bindings/core/v8/ScriptCallStack.h"
#include "bindings/core/v8/ScriptValue.h"
#include "core/inspector/ScriptArguments.h"
+#include "core/workers/WorkerInspectorProxy.h"
#include "wtf/CurrentTime.h"
#include "wtf/PassOwnPtr.h"
@@ -212,6 +213,7 @@ void ConsoleMessage::collectCallStack()
DEFINE_TRACE(ConsoleMessage)
{
visitor->trace(m_scriptArguments);
+ visitor->trace(m_workerProxy);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698