Changeset 53688 in webkit


Ignore:
Timestamp:
Jan 22, 2010 1:19:41 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-22 Kwang Yul Seo <skyul@company100.net>

Reviewed by Dmitry Titov.

ENABLE(DATABASE) guard is missing in ScriptExecutionContext::~ScriptExecutionContext
https://bugs.webkit.org/show_bug.cgi?id=33990

Add missing ENABLE(DATABASE) guard.

  • dom/ScriptExecutionContext.cpp: (WebCore::ScriptExecutionContext::~ScriptExecutionContext):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r53686 r53688  
     12010-01-22  Kwang Yul Seo  <skyul@company100.net>
     2
     3        Reviewed by Dmitry Titov.
     4
     5        ENABLE(DATABASE) guard is missing in ScriptExecutionContext::~ScriptExecutionContext
     6        https://bugs.webkit.org/show_bug.cgi?id=33990
     7
     8        Add missing ENABLE(DATABASE) guard.
     9
     10        * dom/ScriptExecutionContext.cpp:
     11        (WebCore::ScriptExecutionContext::~ScriptExecutionContext):
     12
    1132010-01-22  Xan Lopez  <xlopez@igalia.com>
    214
  • trunk/WebCore/dom/ScriptExecutionContext.cpp

    r53665 r53688  
    7878        (*iter)->contextDestroyed();
    7979    }
     80#if ENABLE(DATABASE)
    8081    if (m_databaseThread) {
    8182        ASSERT(m_databaseThread->terminationRequested());
    8283        m_databaseThread = 0;
    8384    }
     85#endif
    8486}
    8587
Note: See TracChangeset for help on using the changeset viewer.