Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(359)

Unified Diff: loader/FrameLoader.h

Issue 113554: For local review prior to sending to webkit (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/WebCore/
Patch Set: '' Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « html/HTMLHtmlElement.cpp ('k') | loader/FrameLoader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « html/HTMLHtmlElement.cpp ('k') | loader/FrameLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698