diff options
Diffstat (limited to 'WebCore/storage/DatabaseThread.cpp')
-rw-r--r-- | WebCore/storage/DatabaseThread.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/WebCore/storage/DatabaseThread.cpp b/WebCore/storage/DatabaseThread.cpp index fb9b603..b6c9b5d 100644 --- a/WebCore/storage/DatabaseThread.cpp +++ b/WebCore/storage/DatabaseThread.cpp @@ -35,13 +35,11 @@ #include "Database.h" #include "DatabaseTask.h" #include "Logging.h" -#include "SQLTransactionCoordinator.h" namespace WebCore { DatabaseThread::DatabaseThread() : m_threadID(0) - , m_transactionCoordinator(new SQLTransactionCoordinator()) { m_selfRef = this; } @@ -99,9 +97,6 @@ void* DatabaseThread::databaseThread() pool.cycle(); } - // Clean up the list of all pending transactions on this database thread - m_transactionCoordinator->shutdown(); - LOG(StorageAPI, "About to detach thread %i and clear the ref to DatabaseThread %p, which currently has %i ref(s)", m_threadID, this, refCount()); // Close the databases that we ran transactions on. This ensures that if any transactions are still open, they are rolled back and we don't leave the database in an |