summaryrefslogtreecommitdiffstats
path: root/webkit/glue/webframe_impl.h
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-26 15:53:06 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-26 15:53:06 +0000
commit9bf93b6ed682c971299473f1f27eff8e51bc5054 (patch)
treea0e0b45c51a624d42004b061b053f14a4e7c6fca /webkit/glue/webframe_impl.h
parent8537054e6da7e12a50ab27786dd01b253b8a0d12 (diff)
downloadchromium_src-9bf93b6ed682c971299473f1f27eff8e51bc5054.zip
chromium_src-9bf93b6ed682c971299473f1f27eff8e51bc5054.tar.gz
chromium_src-9bf93b6ed682c971299473f1f27eff8e51bc5054.tar.bz2
Remove unused / obsolete AppCache code from WebFrame.
BUG=10044 TEST=none R=dglazkov Review URL: http://codereview.chromium.org/147177 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19364 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webframe_impl.h')
-rw-r--r--webkit/glue/webframe_impl.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/webkit/glue/webframe_impl.h b/webkit/glue/webframe_impl.h
index f91c06c..56c578c 100644
--- a/webkit/glue/webframe_impl.h
+++ b/webkit/glue/webframe_impl.h
@@ -181,12 +181,6 @@ class WebFrameImpl : public WebFrame, public base::RefCounted<WebFrameImpl> {
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);
@@ -401,9 +395,6 @@ class WebFrameImpl : public WebFrame, public base::RefCounted<WebFrameImpl> {
// 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>,