| Index: Source/core/inspector/InspectorConsoleAgent.h
|
| diff --git a/Source/core/inspector/InspectorConsoleAgent.h b/Source/core/inspector/InspectorConsoleAgent.h
|
| index 4e694075f79630c16a189fffff10b1a838407ead..085e563d420b76e739aa9b7ff9fa0a72cfd7264e 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,8 @@ public:
|
| protected:
|
| void addConsoleMessage(PassOwnPtr<InspectorConsoleMessage>);
|
|
|
| - InspectorTimelineAgent* m_timelineAgent;
|
| + RawPtrWillBeMember<InspectorTimelineAgent> m_timelineAgent;
|
| + // FIXME: Oilpan: Move InjectedScriptManager to heap in follow-up CL.
|
| InjectedScriptManager* m_injectedScriptManager;
|
| InspectorFrontend::Console* m_frontend;
|
| Vector<OwnPtr<InspectorConsoleMessage> > m_consoleMessages;
|
|
|