From 643ca7872b450ea4efacab6188849e5aac2ba161 Mon Sep 17 00:00:00 2001 From: Steve Block Date: Tue, 15 Dec 2009 10:12:09 +0000 Subject: Merge webkit.org at r51976 : Initial merge by git. Change-Id: Ib0e7e2f0fb4bee5a186610272edf3186f0986b43 --- WebCore/storage/DatabaseThread.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'WebCore/storage/DatabaseThread.h') diff --git a/WebCore/storage/DatabaseThread.h b/WebCore/storage/DatabaseThread.h index 83b1baf..269a633 100644 --- a/WebCore/storage/DatabaseThread.h +++ b/WebCore/storage/DatabaseThread.h @@ -34,6 +34,7 @@ #include #include #include +#include #include #include #include @@ -55,8 +56,8 @@ public: void requestTermination(); bool terminationRequested() const; - void scheduleTask(PassRefPtr); - void scheduleImmediateTask(PassRefPtr); // This just adds the task to the front of the queue - the caller needs to be extremely careful not to create deadlocks when waiting for completion. + void scheduleTask(PassOwnPtr); + void scheduleImmediateTask(PassOwnPtr); // This just adds the task to the front of the queue - the caller needs to be extremely careful not to create deadlocks when waiting for completion. void unscheduleDatabaseTasks(Database*); void recordDatabaseOpen(Database*); @@ -76,7 +77,7 @@ private: ThreadIdentifier m_threadID; RefPtr m_selfRef; - MessageQueue > m_queue; + MessageQueue m_queue; // This set keeps track of the open databases that have been used on this thread. typedef HashSet > DatabaseSet; -- cgit v1.1