| Index: Source/core/inspector/InspectorResourceAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorResourceAgent.cpp b/Source/core/inspector/InspectorResourceAgent.cpp
|
| index 86f5408f161af8d14a8659a6a787bfdd2609bc0c..d53640c8abffa34e8c78f0130c6e29ee9251fa6a 100644
|
| --- a/Source/core/inspector/InspectorResourceAgent.cpp
|
| +++ b/Source/core/inspector/InspectorResourceAgent.cpp
|
| @@ -43,7 +43,6 @@
|
| #include "core/fetch/ResourceLoader.h"
|
| #include "core/frame/LocalFrame.h"
|
| #include "core/inspector/IdentifiersFactory.h"
|
| -#include "core/inspector/InspectorClient.h"
|
| #include "core/inspector/InspectorOverlay.h"
|
| #include "core/inspector/InspectorPageAgent.h"
|
| #include "core/inspector/InspectorState.h"
|
| @@ -709,21 +708,11 @@ void InspectorResourceAgent::canClearBrowserCache(ErrorString*, bool* result)
|
| *result = true;
|
| }
|
|
|
| -void InspectorResourceAgent::clearBrowserCache(ErrorString*)
|
| -{
|
| - m_client->clearBrowserCache();
|
| -}
|
| -
|
| void InspectorResourceAgent::canClearBrowserCookies(ErrorString*, bool* result)
|
| {
|
| *result = true;
|
| }
|
|
|
| -void InspectorResourceAgent::clearBrowserCookies(ErrorString*)
|
| -{
|
| - m_client->clearBrowserCookies();
|
| -}
|
| -
|
| void InspectorResourceAgent::setCacheDisabled(ErrorString*, bool cacheDisabled)
|
| {
|
| m_state->setBoolean(ResourceAgentState::cacheDisabled, cacheDisabled);
|
| @@ -820,10 +809,9 @@ bool InspectorResourceAgent::fetchResourceContent(LocalFrame* frame, const KURL&
|
| return false;
|
| }
|
|
|
| -InspectorResourceAgent::InspectorResourceAgent(InspectorPageAgent* pageAgent, InspectorClient* client)
|
| +InspectorResourceAgent::InspectorResourceAgent(InspectorPageAgent* pageAgent)
|
| : InspectorBaseAgent<InspectorResourceAgent>("Network")
|
| , m_pageAgent(pageAgent)
|
| - , m_client(client)
|
| , m_frontend(0)
|
| , m_resourcesData(adoptPtr(new NetworkResourcesData()))
|
| , m_isRecalculatingStyle(false)
|
|
|