Index: webkit/glue/webframe.h |
=================================================================== |
--- webkit/glue/webframe.h (revision 13181) |
+++ webkit/glue/webframe.h (working copy) |
@@ -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 @@ |
// mode. |
virtual float PrintPage(int page, skia::PlatformCanvas* canvas) = 0; |
+ // Initiates app cache selection for the context with the resource currently |
darin (slow to review)
2009/04/13 18:39:00
nit: seems bad to wedge these app cache specific m
|
+ // 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; |