| Index: Source/modules/webdatabase/DatabaseThread.h
|
| diff --git a/Source/modules/webdatabase/DatabaseThread.h b/Source/modules/webdatabase/DatabaseThread.h
|
| index a5be5fa479b56537d5345c847972155394414aec..23e2cfd25e936c825bf499a4f603190f5156213e 100644
|
| --- a/Source/modules/webdatabase/DatabaseThread.h
|
| +++ b/Source/modules/webdatabase/DatabaseThread.h
|
| @@ -28,8 +28,8 @@
|
| #ifndef DatabaseThread_h
|
| #define DatabaseThread_h
|
|
|
| +#include "platform/WebThreadRunner.h"
|
| #include "platform/heap/Handle.h"
|
| -#include "public/platform/WebThread.h"
|
| #include "wtf/Deque.h"
|
| #include "wtf/HashMap.h"
|
| #include "wtf/HashSet.h"
|
| @@ -79,7 +79,7 @@ private:
|
| void cleanupDatabaseThread();
|
| void cleanupDatabaseThreadCompleted();
|
|
|
| - OwnPtr<WebThread> m_thread;
|
| + OwnPtr<WebThreadRunner> m_thread;
|
|
|
| // This set keeps track of the open databases that have been used on this thread.
|
| // This must be updated in the database thread though it is constructed and
|
| @@ -92,8 +92,6 @@ private:
|
|
|
| mutable Mutex m_terminationRequestedMutex;
|
| bool m_terminationRequested;
|
| - OwnPtr<PendingGCRunner> m_pendingGCRunner;
|
| - OwnPtr<MessageLoopInterruptor> m_messageLoopInterruptor;
|
| };
|
|
|
| } // namespace blink
|
|
|