summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/inspector/InspectorApplicationCacheAgent.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/inspector/InspectorApplicationCacheAgent.h')
-rw-r--r--Source/WebCore/inspector/InspectorApplicationCacheAgent.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/WebCore/inspector/InspectorApplicationCacheAgent.h b/Source/WebCore/inspector/InspectorApplicationCacheAgent.h
index ac0acbf..33cee59 100644
--- a/Source/WebCore/inspector/InspectorApplicationCacheAgent.h
+++ b/Source/WebCore/inspector/InspectorApplicationCacheAgent.h
@@ -33,9 +33,10 @@
namespace WebCore {
+class DocumentLoader;
class Frame;
class InspectorArray;
-class InspectorController;
+class InspectorAgent;
class InspectorFrontend;
class InspectorObject;
class InspectorValue;
@@ -44,9 +45,11 @@ class ResourceResponse;
class InspectorApplicationCacheAgent {
WTF_MAKE_NONCOPYABLE(InspectorApplicationCacheAgent); WTF_MAKE_FAST_ALLOCATED;
public:
- InspectorApplicationCacheAgent(InspectorController* inspectorController, InspectorFrontend* frontend);
+ InspectorApplicationCacheAgent(DocumentLoader*, InspectorFrontend*);
~InspectorApplicationCacheAgent() { }
+ void didCommitLoad(DocumentLoader*);
+
// Backend to Frontend
void updateApplicationCacheStatus(Frame*);
void networkStateChanged();
@@ -59,7 +62,7 @@ private:
PassRefPtr<InspectorArray> buildArrayForApplicationCacheResources(const ApplicationCacheHost::ResourceInfoList&);
PassRefPtr<InspectorObject> buildObjectForApplicationCacheResource(const ApplicationCacheHost::ResourceInfo&);
- InspectorController* m_inspectorController;
+ DocumentLoader* m_documentLoader;
InspectorFrontend* m_frontend;
};