summaryrefslogtreecommitdiffstats
path: root/WebCore/storage/DatabaseThread.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/storage/DatabaseThread.h')
-rw-r--r--WebCore/storage/DatabaseThread.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/WebCore/storage/DatabaseThread.h b/WebCore/storage/DatabaseThread.h
index 59d7a5d..5aab5fd 100644
--- a/WebCore/storage/DatabaseThread.h
+++ b/WebCore/storage/DatabaseThread.h
@@ -33,7 +33,6 @@
#include <wtf/HashMap.h>
#include <wtf/HashSet.h>
#include <wtf/MessageQueue.h>
-#include <wtf/OwnPtr.h>
#include <wtf/PassRefPtr.h>
#include <wtf/RefPtr.h>
#include <wtf/Threading.h>
@@ -43,7 +42,6 @@ namespace WebCore {
class Database;
class DatabaseTask;
class Document;
-class SQLTransactionCoordinator;
class DatabaseThread : public ThreadSafeShared<DatabaseThread> {
public:
@@ -62,8 +60,6 @@ public:
void recordDatabaseClosed(Database*);
ThreadIdentifier getThreadID() { return m_threadID; }
- SQLTransactionCoordinator* transactionCoordinator() { return m_transactionCoordinator.get(); }
-
private:
DatabaseThread();
@@ -79,8 +75,6 @@ private:
// This set keeps track of the open databases that have been used on this thread.
typedef HashSet<RefPtr<Database> > DatabaseSet;
DatabaseSet m_openDatabaseSet;
-
- OwnPtr<SQLTransactionCoordinator> m_transactionCoordinator;
};
} // namespace WebCore