| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "wtf/HashMap.h" | 34 #include "wtf/HashMap.h" |
| 35 #include "wtf/HashSet.h" | 35 #include "wtf/HashSet.h" |
| 36 #include "wtf/OwnPtr.h" | 36 #include "wtf/OwnPtr.h" |
| 37 #include "wtf/PassOwnPtr.h" | 37 #include "wtf/PassOwnPtr.h" |
| 38 #include "wtf/ThreadingPrimitives.h" | 38 #include "wtf/ThreadingPrimitives.h" |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class Database; | 42 class Database; |
| 43 class DatabaseTask; | 43 class DatabaseTask; |
| 44 class Document; | |
| 45 class MessageLoopInterruptor; | |
| 46 class PendingGCRunner; | |
| 47 class SQLTransactionClient; | 44 class SQLTransactionClient; |
| 48 class SQLTransactionCoordinator; | 45 class SQLTransactionCoordinator; |
| 49 class TaskSynchronizer; | 46 class TaskSynchronizer; |
| 50 | 47 |
| 51 class DatabaseThread : public GarbageCollectedFinalized<DatabaseThread> { | 48 class DatabaseThread : public GarbageCollectedFinalized<DatabaseThread> { |
| 52 public: | 49 public: |
| 53 static DatabaseThread* create() { return new DatabaseThread; } | 50 static DatabaseThread* create() { return new DatabaseThread; } |
| 54 ~DatabaseThread(); | 51 ~DatabaseThread(); |
| 55 void trace(Visitor*); | 52 void trace(Visitor*); |
| 56 | 53 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 87 Member<SQLTransactionCoordinator> m_transactionCoordinator; | 84 Member<SQLTransactionCoordinator> m_transactionCoordinator; |
| 88 TaskSynchronizer* m_cleanupSync; | 85 TaskSynchronizer* m_cleanupSync; |
| 89 | 86 |
| 90 mutable Mutex m_terminationRequestedMutex; | 87 mutable Mutex m_terminationRequestedMutex; |
| 91 bool m_terminationRequested; | 88 bool m_terminationRequested; |
| 92 }; | 89 }; |
| 93 | 90 |
| 94 } // namespace blink | 91 } // namespace blink |
| 95 | 92 |
| 96 #endif // DatabaseThread_h | 93 #endif // DatabaseThread_h |
| OLD | NEW |