diff options
Diffstat (limited to 'Source/WebCore/inspector/InspectorApplicationCacheAgent.h')
-rw-r--r-- | Source/WebCore/inspector/InspectorApplicationCacheAgent.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/WebCore/inspector/InspectorApplicationCacheAgent.h b/Source/WebCore/inspector/InspectorApplicationCacheAgent.h index 11f10ce..3d9e494 100644 --- a/Source/WebCore/inspector/InspectorApplicationCacheAgent.h +++ b/Source/WebCore/inspector/InspectorApplicationCacheAgent.h @@ -33,6 +33,7 @@ namespace WebCore { +class Frame; class InspectorArray; class InspectorController; class InspectorFrontend; @@ -46,9 +47,8 @@ public: ~InspectorApplicationCacheAgent() { } // Backend to Frontend - void didReceiveManifestResponse(unsigned long identifier, const ResourceResponse&); - void updateApplicationCacheStatus(ApplicationCacheHost::Status); - void updateNetworkState(bool isNowOnline); + void updateApplicationCacheStatus(Frame*); + void networkStateChanged(); // From Frontend void getApplicationCaches(RefPtr<InspectorValue>* applicationCaches); |