| Index: Source/core/inspector/InspectorPageAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorPageAgent.cpp b/Source/core/inspector/InspectorPageAgent.cpp
|
| index 25fcbeeb45f56881a65493f2d24e64fd7c80f7f3..b9f2e5448c23caab28daac4bc3fa7329cc10990f 100644
|
| --- a/Source/core/inspector/InspectorPageAgent.cpp
|
| +++ b/Source/core/inspector/InspectorPageAgent.cpp
|
| @@ -45,7 +45,6 @@
|
| #include "core/inspector/DOMPatchSupport.h"
|
| #include "core/inspector/IdentifiersFactory.h"
|
| #include "core/inspector/InjectedScriptManager.h"
|
| -#include "core/inspector/InspectorAgent.h"
|
| #include "core/inspector/InspectorClient.h"
|
| #include "core/inspector/InspectorInstrumentation.h"
|
| #include "core/inspector/InspectorOverlay.h"
|
| @@ -229,9 +228,9 @@ bool InspectorPageAgent::dataContent(const char* data, unsigned size, const Stri
|
| return decodeBuffer(data, size, textEncodingName, result);
|
| }
|
|
|
| -PassOwnPtr<InspectorPageAgent> InspectorPageAgent::create(InstrumentingAgents* instrumentingAgents, Page* page, InspectorAgent* inspectorAgent, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorClient* client, InspectorOverlay* overlay)
|
| +PassOwnPtr<InspectorPageAgent> InspectorPageAgent::create(InstrumentingAgents* instrumentingAgents, Page* page, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorClient* client, InspectorOverlay* overlay)
|
| {
|
| - return adoptPtr(new InspectorPageAgent(instrumentingAgents, page, inspectorAgent, state, injectedScriptManager, client, overlay));
|
| + return adoptPtr(new InspectorPageAgent(instrumentingAgents, page, state, injectedScriptManager, client, overlay));
|
| }
|
|
|
| // static
|
| @@ -303,10 +302,9 @@ TypeBuilder::Page::ResourceType::Enum InspectorPageAgent::cachedResourceTypeJson
|
| return resourceTypeJson(cachedResourceType(cachedResource));
|
| }
|
|
|
| -InspectorPageAgent::InspectorPageAgent(InstrumentingAgents* instrumentingAgents, Page* page, InspectorAgent* inspectorAgent, InspectorCompositeState* inspectorState, InjectedScriptManager* injectedScriptManager, InspectorClient* client, InspectorOverlay* overlay)
|
| +InspectorPageAgent::InspectorPageAgent(InstrumentingAgents* instrumentingAgents, Page* page, InspectorCompositeState* inspectorState, InjectedScriptManager* injectedScriptManager, InspectorClient* client, InspectorOverlay* overlay)
|
| : InspectorBaseAgent<InspectorPageAgent>("Page", instrumentingAgents, inspectorState)
|
| , m_page(page)
|
| - , m_inspectorAgent(inspectorAgent)
|
| , m_injectedScriptManager(injectedScriptManager)
|
| , m_client(client)
|
| , m_frontend(0)
|
|
|