From c60802dd50f86c37e0596d41c3ef6fc2c8804da4 Mon Sep 17 00:00:00 2001 From: Andrei Popescu Date: Tue, 21 Jul 2009 13:10:06 +0100 Subject: Implements a mechanism that limit the growth of the application cache --- WebKit/wx/WebKitSupport/ChromeClientWx.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'WebKit/wx/WebKitSupport/ChromeClientWx.cpp') diff --git a/WebKit/wx/WebKitSupport/ChromeClientWx.cpp b/WebKit/wx/WebKitSupport/ChromeClientWx.cpp index 6dfe7a4..411f795 100644 --- a/WebKit/wx/WebKitSupport/ChromeClientWx.cpp +++ b/WebKit/wx/WebKitSupport/ChromeClientWx.cpp @@ -355,6 +355,13 @@ void ChromeClientWx::exceededDatabaseQuota(Frame*, const String&) } #endif +#if ENABLE(OFFLINE_WEB_APPLICATIONS) +void ChromeClientWx::reachedMaxAppCacheSize(int64_t spaceNeeded) +{ + notImplemented(); +} +#endif + void ChromeClientWx::scroll(const IntSize&, const IntRect&, const IntRect&) { notImplemented(); -- cgit v1.1