| Index: Source/core/inspector/InspectorConsoleAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorConsoleAgent.cpp b/Source/core/inspector/InspectorConsoleAgent.cpp
|
| index e530edd3d1c7458d3ee0f068c1d7ca7c72fab4f4..5fcb94602711bb961624191ac84e5ced2bf08ac5 100644
|
| --- a/Source/core/inspector/InspectorConsoleAgent.cpp
|
| +++ b/Source/core/inspector/InspectorConsoleAgent.cpp
|
| @@ -73,12 +73,20 @@ InspectorConsoleAgent::InspectorConsoleAgent(InspectorTimelineAgent* timelineAge
|
|
|
| InspectorConsoleAgent::~InspectorConsoleAgent()
|
| {
|
| +#if !ENABLE(OILPAN)
|
| m_instrumentingAgents->setInspectorConsoleAgent(0);
|
| - m_instrumentingAgents = 0;
|
| + m_instrumentingAgents = nullptr;
|
| +#endif
|
| m_state = 0;
|
| m_injectedScriptManager = 0;
|
| }
|
|
|
| +void InspectorConsoleAgent::trace(Visitor* visitor)
|
| +{
|
| + visitor->trace(m_timelineAgent);
|
| + InspectorBaseAgent::trace(visitor);
|
| +}
|
| +
|
| void InspectorConsoleAgent::init()
|
| {
|
| m_instrumentingAgents->setInspectorConsoleAgent(this);
|
|
|