| Index: Source/WebCore/dom/ScriptExecutionContext.cpp
|
| diff --git a/Source/WebCore/dom/ScriptExecutionContext.cpp b/Source/WebCore/dom/ScriptExecutionContext.cpp
|
| index 37298a25af9d0476d6aa77b35a81c3f8340e1e30..d8f1b912fb36878d81893b0871e9b7d6b1e8656d 100644
|
| --- a/Source/WebCore/dom/ScriptExecutionContext.cpp
|
| +++ b/Source/WebCore/dom/ScriptExecutionContext.cpp
|
| @@ -31,6 +31,7 @@
|
| #include "CachedScript.h"
|
| #include "ContentSecurityPolicy.h"
|
| #include "DOMTimer.h"
|
| +#include "DatabaseContext.h"
|
| #include "ErrorEvent.h"
|
| #include "EventListener.h"
|
| #include "EventTarget.h"
|
| @@ -47,10 +48,6 @@
|
| #include <wtf/PassRefPtr.h>
|
| #include <wtf/Vector.h>
|
|
|
| -#if ENABLE(SQL_DATABASE)
|
| -#include "DatabaseContext.h"
|
| -#endif
|
| -
|
| namespace WTF {
|
|
|
| template<> struct SequenceMemoryInstrumentationTraits<WebCore::ContextDestructionObserver*> {
|
| @@ -406,12 +403,10 @@ ScriptExecutionContext::Task::~Task()
|
| {
|
| }
|
|
|
| -#if ENABLE(SQL_DATABASE)
|
| void ScriptExecutionContext::setDatabaseContext(DatabaseContext* databaseContext)
|
| {
|
| ASSERT(!m_databaseContext);
|
| m_databaseContext = databaseContext;
|
| }
|
| -#endif
|
|
|
| } // namespace WebCore
|
|
|