| Index: Source/core/inspector/PageConsoleAgent.h | 
| diff --git a/Source/core/inspector/PageConsoleAgent.h b/Source/core/inspector/PageConsoleAgent.h | 
| index ed9f71300713900b9483c1119b481262ee3dedc4..4cca69520177bf6b609502df634081d1f03cfd81 100644 | 
| --- a/Source/core/inspector/PageConsoleAgent.h | 
| +++ b/Source/core/inspector/PageConsoleAgent.h | 
| @@ -41,16 +41,16 @@ class InspectorDOMAgent; | 
| class PageConsoleAgent : public InspectorConsoleAgent { | 
| WTF_MAKE_NONCOPYABLE(PageConsoleAgent); | 
| public: | 
| -    static PassOwnPtr<PageConsoleAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorDOMAgent* domAgent) | 
| +    static PassOwnPtr<PageConsoleAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorDOMAgent* domAgent, InspectorTimelineAgent* timelineAgent) | 
| { | 
| -        return adoptPtr(new PageConsoleAgent(instrumentingAgents, state, injectedScriptManager, domAgent)); | 
| +        return adoptPtr(new PageConsoleAgent(instrumentingAgents, state, injectedScriptManager, domAgent, timelineAgent)); | 
| } | 
| virtual ~PageConsoleAgent(); | 
|  | 
| virtual bool isWorkerAgent() OVERRIDE { return false; } | 
|  | 
| private: | 
| -    PageConsoleAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*, InspectorDOMAgent*); | 
| +    PageConsoleAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*, InspectorDOMAgent*, InspectorTimelineAgent*); | 
| virtual void clearMessages(ErrorString*); | 
| virtual void addInspectedNode(ErrorString*, int nodeId); | 
|  | 
|  |