diff options
Diffstat (limited to 'webkit/glue/webframe.h')
-rw-r--r-- | webkit/glue/webframe.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/webkit/glue/webframe.h b/webkit/glue/webframe.h index 23b12c5..9c36c95 100644 --- a/webkit/glue/webframe.h +++ b/webkit/glue/webframe.h @@ -11,6 +11,7 @@ #include "skia/ext/platform_canvas.h" #include "webkit/glue/feed.h" +class WebAppCacheContext; class WebDataSource; class WebError; class WebRequest; @@ -380,6 +381,14 @@ class WebFrame { // mode. virtual float PrintPage(int page, skia::PlatformCanvas* canvas) = 0; + // Initiates app cache selection for the context with the resource currently + // committed in the webframe. + virtual void SelectAppCacheWithoutManifest() = 0; + virtual void SelectAppCacheWithManifest(const GURL& manifest_url) = 0; + + // Returns a pointer to the WebAppCacheContext for this frame. + virtual WebAppCacheContext* GetAppCacheContext() const = 0; + // Reformats the web frame for screen display. virtual void EndPrint() = 0; |