| Index: webkit/glue/webframe_impl.h
|
| ===================================================================
|
| --- webkit/glue/webframe_impl.h (revision 13181)
|
| +++ webkit/glue/webframe_impl.h (working copy)
|
| @@ -181,6 +181,12 @@
|
| virtual float PrintPage(int page, skia::PlatformCanvas* canvas);
|
| virtual void EndPrint();
|
|
|
| + virtual void SelectAppCacheWithoutManifest();
|
| + virtual void SelectAppCacheWithManifest(const GURL& manifest_url);
|
| + virtual WebAppCacheContext* GetAppCacheContext() const {
|
| + return app_cache_context_.get();
|
| + }
|
| +
|
| PassRefPtr<WebCore::Frame> CreateChildFrame(
|
| const WebCore::FrameLoadRequest&,
|
| WebCore::HTMLFrameOwnerElement* owner_element);
|
| @@ -412,6 +418,9 @@
|
| // information. Is used by PrintPage().
|
| scoped_ptr<ChromePrintContext> print_context_;
|
|
|
| + // The app cache context for this frame.
|
| + scoped_ptr<WebAppCacheContext> app_cache_context_;
|
| +
|
| // The input fields that are interested in edit events and their associated
|
| // listeners.
|
| typedef HashMap<RefPtr<WebCore::HTMLInputElement>,
|
|
|