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

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

Issue 307943002: Oilpan: Prepare moving InspectorController and InspectorAgents to oilpan. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added agents() Created 6 years, 6 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: Source/core/inspector/InspectorConsoleAgent.cpp
diff --git a/Source/core/inspector/InspectorConsoleAgent.cpp b/Source/core/inspector/InspectorConsoleAgent.cpp
index 37cc22a726aec11ae4870f8f159d5405f52b54b1..d9d5d9f248ce0948f7f28b5a6cc7e6e03edd81cd 100644
--- a/Source/core/inspector/InspectorConsoleAgent.cpp
+++ b/Source/core/inspector/InspectorConsoleAgent.cpp
@@ -79,6 +79,12 @@ InspectorConsoleAgent::~InspectorConsoleAgent()
m_injectedScriptManager = 0;
}
+void InspectorConsoleAgent::trace(Visitor* visitor)
+{
+ visitor->trace(m_timelineAgent);
+ InspectorBaseAgent::trace(visitor);
+}
+
void InspectorConsoleAgent::init()
{
m_instrumentingAgents->setInspectorConsoleAgent(this);

Powered by Google App Engine
This is Rietveld 408576698