Index: loader/FrameLoader.h |
=================================================================== |
--- loader/FrameLoader.h (revision 44202) |
+++ loader/FrameLoader.h (working copy) |
@@ -70,6 +70,10 @@ |
class TextResourceDecoder; |
class Widget; |
+#if ENABLE(APPLICATION_CACHE) |
+ class ApplicationCacheFrontend; |
+#endif |
+ |
struct FrameLoadRequest; |
struct ScheduledRedirection; |
struct WindowFeatures; |
@@ -243,6 +247,13 @@ |
void loadedResourceFromMemoryCache(const CachedResource*); |
void tellClientAboutPastMemoryCacheLoads(); |
+#if ENABLE(APPLICATION_CACHE) |
+ ApplicationCacheFrontend* appcacheFrontend() const; |
+ void selectInitialApplicationCache(); |
+ void selectApplicationCacheWithoutManifest(); |
+ void selectApplicationCacheWithManifest(const KURL& manifestURL); |
+#endif |
+ |
void checkLoadComplete(); |
void detachFromParent(); |
@@ -636,6 +647,10 @@ |
#if ENABLE(WML) |
bool m_forceReloadWmlDeck; |
#endif |
+ |
+#if ENABLE(APPLICATION_CACHE) |
+ OwnPtr<ApplicationCacheFrontend> m_appcacheFrontend; |
+#endif |
}; |
} // namespace WebCore |