| Index: Source/core/inspector/InspectorConsoleAgent.h
|
| diff --git a/Source/core/inspector/InspectorConsoleAgent.h b/Source/core/inspector/InspectorConsoleAgent.h
|
| index 462fc97805d007f19539e12b101e27d2c117efaa..d933641917b2eb37e7be557143567219c4277c5f 100644
|
| --- a/Source/core/inspector/InspectorConsoleAgent.h
|
| +++ b/Source/core/inspector/InspectorConsoleAgent.h
|
| @@ -64,6 +64,7 @@ class InspectorConsoleAgent : public InspectorBaseAgent<InspectorConsoleAgent>,
|
| public:
|
| InspectorConsoleAgent(InspectorTimelineAgent*, InjectedScriptManager*);
|
| virtual ~InspectorConsoleAgent();
|
| + virtual void trace(Visitor*) OVERRIDE;
|
|
|
| virtual void init() OVERRIDE;
|
| virtual void enable(ErrorString*) OVERRIDE FINAL;
|
| @@ -108,7 +109,7 @@ public:
|
| protected:
|
| void addConsoleMessage(PassOwnPtr<ConsoleMessage>);
|
|
|
| - InspectorTimelineAgent* m_timelineAgent;
|
| + RawPtrWillBeMember<InspectorTimelineAgent> m_timelineAgent;
|
| InjectedScriptManager* m_injectedScriptManager;
|
| InspectorFrontend::Console* m_frontend;
|
| Vector<OwnPtr<ConsoleMessage> > m_consoleMessages;
|
|
|