[Webkit-unassigned] [Bug 40655] Database access in worker threads results in WebKit SPI notifications being posted from worker threads

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Aug 17 23:05:03 PDT 2010


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





--- Comment #27 from Mark Rowe (bdash) <mrowe at apple.com>  2010-08-17 23:05:03 PST ---
(In reply to comment #26)
> I can't find any place where WebDatabaseManager is created.

WebDatabaseManager* WebDatabaseManager::createInstance()
{
    WebDatabaseManager* manager = new WebDatabaseManager();


As for where it’s destroyed:

ULONG STDMETHODCALLTYPE WebDatabaseManager::Release()
{
    ULONG newRef = --m_refCount;
    if (!newRef)
        delete this;

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list