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

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

Issue 1434383002: Oilpan: move InspectedFrames to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix incorrect OwnPtr<> use Created 5 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/PageConsoleAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/PageConsoleAgent.cpp b/third_party/WebKit/Source/core/inspector/PageConsoleAgent.cpp
index 63e8a43250a8d5f401e53895d05eee1fbc71daf2..227b3e2996116befe39c38555c0fa9bd51cf2b16 100644
--- a/third_party/WebKit/Source/core/inspector/PageConsoleAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/PageConsoleAgent.cpp
@@ -63,6 +63,7 @@ PageConsoleAgent::~PageConsoleAgent()
DEFINE_TRACE(PageConsoleAgent)
{
visitor->trace(m_inspectorDOMAgent);
+ visitor->trace(m_inspectedFrames);
InspectorConsoleAgent::trace(visitor);
}

Powered by Google App Engine
This is Rietveld 408576698