Changeset 55809 in webkit


Ignore:
Timestamp:
Mar 10, 2010 2:44:03 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-10 Eric Uhrhane <ericu@chromium.org>

Reviewed by David Levin.

The build fix for my patch on bug #35763 wasn't quite right--it removed
the call entirely, instead of replacing it with the new API. This adds
the call to Database::setIsAvailable.

https://bugs.webkit.org/show_bug.cgi?id=35763

Location:
trunk/WebKit/win
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/win/ChangeLog

    r55776 r55809  
     12010-03-10  Eric Uhrhane  <ericu@chromium.org>
     2
     3        Reviewed by David Levin.
     4
     5        The build fix for my patch on bug #35763 wasn't quite right--it removed
     6        the call entirely, instead of replacing it with the new API.  This adds
     7        the call to Database::setIsAvailable.
     8
     9        https://bugs.webkit.org/show_bug.cgi?id=35763
     10
     11        * WebView.cpp: Added a call to Database::setIsAvailable where change 55667 removed the old Settings API call <http://trac.webkit.org/changeset/55667>.
     12        (WebView::notifyPreferencesChanged):
     13
    1142010-03-10  John Sullivan  <sullivan@apple.com>
    215
  • trunk/WebKit/win/WebView.cpp

    r55667 r55809  
    7474#include <WebCore/CookieStorageWin.h>
    7575#include <WebCore/Cursor.h>
     76#include <WebCore/Database.h>
    7677#include <WebCore/Document.h>
    7778#include <WebCore/DragController.h>
     
    46094610    settings->setOfflineWebApplicationCacheEnabled(enabled);
    46104611
     4612#if ENABLE(DATABASE)
     4613    hr = prefsPrivate->databasesEnabled(&enabled);
     4614    if (FAILED(hr))
     4615        return hr;
     4616    Database::setIsAvailable(enabled);
     4617#endif
     4618
    46114619    hr = prefsPrivate->localStorageEnabled(&enabled);
    46124620    if (FAILED(hr))
Note: See TracChangeset for help on using the changeset viewer.