diff options
| author | Ben Murdoch <benm@google.com> | 2009-05-13 17:58:43 +0100 |
|---|---|---|
| committer | Ben Murdoch <benm@google.com> | 2009-05-15 11:38:01 +0100 |
| commit | 8ccf722629b08f2a06b2cadbdc3d0c9dc885e25d (patch) | |
| tree | ad83ccc3e517a60955ebedbfc855a4a97558f508 /WebKit/wx/WebKitSupport/ChromeClientWx.cpp | |
| parent | 8fe05189c51b0ae29ba6f8c9d4c86fa288110707 (diff) | |
| download | external_webkit-8ccf722629b08f2a06b2cadbdc3d0c9dc885e25d.zip external_webkit-8ccf722629b08f2a06b2cadbdc3d0c9dc885e25d.tar.gz external_webkit-8ccf722629b08f2a06b2cadbdc3d0c9dc885e25d.tar.bz2 | |
Apply fixes for webkit bugs 24776 and 25616 to add ENABLE(DATABASE) guards. This makes the macro work, so ENABLE_DATABASE can be toggled in config.h and the JavaScriptCore.derived.mk or V8Bindings.derived.mk.
Diffstat (limited to 'WebKit/wx/WebKitSupport/ChromeClientWx.cpp')
| -rw-r--r-- | WebKit/wx/WebKitSupport/ChromeClientWx.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/WebKit/wx/WebKitSupport/ChromeClientWx.cpp b/WebKit/wx/WebKitSupport/ChromeClientWx.cpp index 29fef0e..6dfe7a4 100644 --- a/WebKit/wx/WebKitSupport/ChromeClientWx.cpp +++ b/WebKit/wx/WebKitSupport/ChromeClientWx.cpp @@ -348,10 +348,12 @@ void ChromeClientWx::print(Frame*) notImplemented(); } +#if ENABLE(DATABASE) void ChromeClientWx::exceededDatabaseQuota(Frame*, const String&) { notImplemented(); } +#endif void ChromeClientWx::scroll(const IntSize&, const IntRect&, const IntRect&) { |
