| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008, 2013 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008, 2013 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 15 matching lines...) Expand all Loading... |
| 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 */ | 27 */ |
| 28 | 28 |
| 29 #ifndef DatabaseTask_h | 29 #ifndef DatabaseTask_h |
| 30 #define DatabaseTask_h | 30 #define DatabaseTask_h |
| 31 | 31 |
| 32 #include "modules/webdatabase/Database.h" | 32 #include "modules/webdatabase/Database.h" |
| 33 #include "modules/webdatabase/DatabaseBasicTypes.h" | 33 #include "modules/webdatabase/DatabaseBasicTypes.h" |
| 34 #include "modules/webdatabase/DatabaseError.h" | 34 #include "modules/webdatabase/DatabaseError.h" |
| 35 #include "modules/webdatabase/SQLTransactionBackend.h" | 35 #include "modules/webdatabase/SQLTransactionBackend.h" |
| 36 #include "platform/Task.h" | |
| 37 #include "platform/TaskSynchronizer.h" | 36 #include "platform/TaskSynchronizer.h" |
| 38 #include "platform/heap/Handle.h" | 37 #include "platform/heap/Handle.h" |
| 39 #include "wtf/OwnPtr.h" | 38 #include "wtf/OwnPtr.h" |
| 40 #include "wtf/PassOwnPtr.h" | 39 #include "wtf/PassOwnPtr.h" |
| 41 #include "wtf/Threading.h" | 40 #include "wtf/Threading.h" |
| 42 #include "wtf/Vector.h" | 41 #include "wtf/Vector.h" |
| 43 #include "wtf/text/WTFString.h" | 42 #include "wtf/text/WTFString.h" |
| 44 | 43 |
| 45 namespace blink { | 44 namespace blink { |
| 46 | 45 |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 #if !LOG_DISABLED | 146 #if !LOG_DISABLED |
| 148 const char* debugTaskName() const override; | 147 const char* debugTaskName() const override; |
| 149 #endif | 148 #endif |
| 150 | 149 |
| 151 Vector<String>& m_tableNames; | 150 Vector<String>& m_tableNames; |
| 152 }; | 151 }; |
| 153 | 152 |
| 154 } // namespace blink | 153 } // namespace blink |
| 155 | 154 |
| 156 #endif // DatabaseTask_h | 155 #endif // DatabaseTask_h |
| OLD | NEW |