summaryrefslogtreecommitdiffstats
path: root/WebCore/inspector/InspectorBackend.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/inspector/InspectorBackend.h')
-rw-r--r--WebCore/inspector/InspectorBackend.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/WebCore/inspector/InspectorBackend.h b/WebCore/inspector/InspectorBackend.h
index 035abf6..47cfdc7 100644
--- a/WebCore/inspector/InspectorBackend.h
+++ b/WebCore/inspector/InspectorBackend.h
@@ -39,6 +39,7 @@ namespace WebCore {
class CachedResource;
class Database;
+class InspectorApplicationCacheAgent;
class InspectorDOMAgent;
class InspectorFrontend;
class Node;
@@ -153,6 +154,10 @@ public:
void getCookies(long callId);
void deleteCookie(const String& cookieName, const String& domain);
+#if ENABLE(OFFLINE_WEB_APPLICATIONS)
+ void getApplicationCaches(long callId);
+#endif
+
// Generic code called from custom implementations.
void releaseWrapperObjectGroup(long injectedScriptId, const String& objectGroup);
void didEvaluateForTestInFrontend(long callId, const String& jsonResult);
@@ -170,6 +175,9 @@ public:
private:
InspectorBackend(InspectorController* inspectorController);
InspectorDOMAgent* inspectorDOMAgent();
+#if ENABLE(OFFLINE_WEB_APPLICATIONS)
+ InspectorApplicationCacheAgent* inspectorApplicationCacheAgent();
+#endif
InspectorFrontend* inspectorFrontend();
Node* nodeForId(long nodeId);