Chromium Code Reviews| 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; |
|
keishi
2014/06/11 14:10:54
SAFE: InjectedScriptManager and InspectorConsoleAg
haraken
2014/06/12 05:53:01
Ditto. Moving InspectorScriptManager in a follow-u
keishi
2014/06/13 03:37:33
Done.
|
| InspectorFrontend::Console* m_frontend; |
|
keishi
2014/06/11 14:10:54
SAFE: InspectorFrontend::Console is owned by Inspe
|
| Vector<OwnPtr<ConsoleMessage> > m_consoleMessages; |