diff options
Diffstat (limited to 'WebCore/storage/Database.h')
-rw-r--r-- | WebCore/storage/Database.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/storage/Database.h b/WebCore/storage/Database.h index f275027..61c9b66 100644 --- a/WebCore/storage/Database.h +++ b/WebCore/storage/Database.h @@ -30,7 +30,6 @@ #define Database_h #if ENABLE(DATABASE) -#include <wtf/MessageQueue.h> #include "PlatformString.h" #include "SecurityOrigin.h" #include "SQLiteDatabase.h" @@ -133,9 +132,10 @@ private: void scheduleTransactionCallback(SQLTransaction*); void scheduleTransactionStep(SQLTransaction* transaction, bool immediately = false); - MessageQueue<RefPtr<SQLTransaction> > m_transactionQueue; + Deque<RefPtr<SQLTransaction> > m_transactionQueue; Mutex m_transactionInProgressMutex; bool m_transactionInProgress; + bool m_isTransactionQueueEnabled; static void deliverPendingCallback(void*); |