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

Unified Diff: webkit/glue/webframe.h

Issue 9712: AppCachePlumbing (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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
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;

Powered by Google App Engine
This is Rietveld 408576698