diff options
| author | Andrei Popescu <andreip@google.com> | 2009-07-21 13:10:06 +0100 |
|---|---|---|
| committer | Andrei Popescu <andreip@google.com> | 2009-07-21 13:31:30 +0100 |
| commit | c60802dd50f86c37e0596d41c3ef6fc2c8804da4 (patch) | |
| tree | ef54137cbf064976e5f146c125691c40fb1136d3 /WebKit/wx/WebKitSupport/ChromeClientWx.cpp | |
| parent | ce39e03a248f9bee3e746c15e7961b3e40a871ed (diff) | |
| download | external_webkit-c60802dd50f86c37e0596d41c3ef6fc2c8804da4.zip external_webkit-c60802dd50f86c37e0596d41c3ef6fc2c8804da4.tar.gz external_webkit-c60802dd50f86c37e0596d41c3ef6fc2c8804da4.tar.bz2 | |
Implements a mechanism that limit the growth of the application cache
Diffstat (limited to 'WebKit/wx/WebKitSupport/ChromeClientWx.cpp')
| -rw-r--r-- | WebKit/wx/WebKitSupport/ChromeClientWx.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
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(); |
