| Index: Source/core/inspector/PageConsoleAgent.h
|
| diff --git a/Source/core/inspector/PageConsoleAgent.h b/Source/core/inspector/PageConsoleAgent.h
|
| index 13607b94c48b2236fc7b77d114146375b7ff02b5..59a2e5ba3dfda06b635ae811857a0726afbfe069 100644
|
| --- a/Source/core/inspector/PageConsoleAgent.h
|
| +++ b/Source/core/inspector/PageConsoleAgent.h
|
| @@ -37,26 +37,24 @@
|
|
|
| namespace WebCore {
|
|
|
| -class InspectorAgent;
|
| class InspectorDOMAgent;
|
|
|
| class PageConsoleAgent : public InspectorConsoleAgent {
|
| WTF_MAKE_NONCOPYABLE(PageConsoleAgent);
|
| public:
|
| - static PassOwnPtr<PageConsoleAgent> create(InstrumentingAgents* instrumentingAgents, InspectorAgent* agent, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorDOMAgent* domAgent)
|
| + static PassOwnPtr<PageConsoleAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorDOMAgent* domAgent)
|
| {
|
| - return adoptPtr(new PageConsoleAgent(instrumentingAgents, agent, state, injectedScriptManager, domAgent));
|
| + return adoptPtr(new PageConsoleAgent(instrumentingAgents, state, injectedScriptManager, domAgent));
|
| }
|
| virtual ~PageConsoleAgent();
|
|
|
| virtual bool isWorkerAgent() OVERRIDE { return false; }
|
|
|
| private:
|
| - PageConsoleAgent(InstrumentingAgents*, InspectorAgent*, InspectorCompositeState*, InjectedScriptManager*, InspectorDOMAgent*);
|
| + PageConsoleAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*, InspectorDOMAgent*);
|
| virtual void clearMessages(ErrorString*);
|
| virtual void addInspectedNode(ErrorString*, int nodeId);
|
|
|
| - InspectorAgent* m_inspectorAgent;
|
| InspectorDOMAgent* m_inspectorDOMAgent;
|
| };
|
|
|
|
|