Changeset 34110 in webkit


Ignore:
Timestamp:
May 24, 2008 6:51:07 PM (16 years ago)
Author:
alp@webkit.org
Message:

2008-05-24 Alp Toker <alp@nuanti.com>

https://bugs.webkit.org/show_bug.cgi?id=18825
webkitgtk fails to build from source: "Database Tracker" has not been declared

GTK+ fix for building without database support.
exceededDatabaseQuota() still needs to be present, just a no-op.

  • WebCoreSupport/ChromeClientGtk.cpp: (WebKit::ChromeClient::exceededDatabaseQuota):
Location:
trunk/WebKit/gtk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/gtk/ChangeLog

    r34084 r34110  
     12008-05-24  Alp Toker  <alp@nuanti.com>
     2
     3        https://bugs.webkit.org/show_bug.cgi?id=18825
     4        webkitgtk fails to build from source: "Database Tracker" has not been declared
     5
     6        GTK+ fix for building without database support.
     7        exceededDatabaseQuota() still needs to be present, just a no-op.
     8
     9        * WebCoreSupport/ChromeClientGtk.cpp:
     10        (WebKit::ChromeClient::exceededDatabaseQuota):
     11
    1122008-05-23  Alp Toker  <alp@nuanti.com>
    213
  • trunk/WebKit/gtk/WebCoreSupport/ChromeClientGtk.cpp

    r34084 r34110  
    312312}
    313313
     314void ChromeClient::exceededDatabaseQuota(Frame* frame, const String&)
     315{
    314316#if ENABLE(DATABASE)
    315 void ChromeClient::exceededDatabaseQuota(Frame *frame, const String&)
    316 {
    317317    // Set to 5M for testing
    318318    // FIXME: Make this configurable
     
    320320    const unsigned long long defaultQuota = 5 * 1024 * 1024;
    321321    DatabaseTracker::tracker().setQuota(frame->document()->securityOrigin(), defaultQuota);
    322 }
    323322#endif
    324 
    325 }
     323}
     324
     325}
Note: See TracChangeset for help on using the changeset viewer.