| 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 11 matching lines...) Expand all Loading... |
| 22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 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 <memory> |
| 32 #include "modules/webdatabase/Database.h" | 33 #include "modules/webdatabase/Database.h" |
| 33 #include "modules/webdatabase/DatabaseBasicTypes.h" | 34 #include "modules/webdatabase/DatabaseBasicTypes.h" |
| 34 #include "modules/webdatabase/DatabaseError.h" | 35 #include "modules/webdatabase/DatabaseError.h" |
| 35 #include "modules/webdatabase/SQLTransactionBackend.h" | 36 #include "modules/webdatabase/SQLTransactionBackend.h" |
| 36 #include "platform/WaitableEvent.h" | 37 #include "platform/WaitableEvent.h" |
| 37 #include "platform/heap/Handle.h" | 38 #include "platform/heap/Handle.h" |
| 38 #include "wtf/PtrUtil.h" | 39 #include "wtf/PtrUtil.h" |
| 39 #include "wtf/Threading.h" | 40 #include "wtf/Threading.h" |
| 40 #include "wtf/Vector.h" | 41 #include "wtf/Vector.h" |
| 41 #include "wtf/text/WTFString.h" | 42 #include "wtf/text/WTFString.h" |
| 42 #include <memory> | |
| 43 | 43 |
| 44 namespace blink { | 44 namespace blink { |
| 45 | 45 |
| 46 class DatabaseTask { | 46 class DatabaseTask { |
| 47 WTF_MAKE_NONCOPYABLE(DatabaseTask); | 47 WTF_MAKE_NONCOPYABLE(DatabaseTask); |
| 48 USING_FAST_MALLOC(DatabaseTask); | 48 USING_FAST_MALLOC(DatabaseTask); |
| 49 | 49 |
| 50 public: | 50 public: |
| 51 virtual ~DatabaseTask(); | 51 virtual ~DatabaseTask(); |
| 52 | 52 |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 #if DCHECK_IS_ON() | 157 #if DCHECK_IS_ON() |
| 158 const char* debugTaskName() const override; | 158 const char* debugTaskName() const override; |
| 159 #endif | 159 #endif |
| 160 | 160 |
| 161 Vector<String>& m_tableNames; | 161 Vector<String>& m_tableNames; |
| 162 }; | 162 }; |
| 163 | 163 |
| 164 } // namespace blink | 164 } // namespace blink |
| 165 | 165 |
| 166 #endif // DatabaseTask_h | 166 #endif // DatabaseTask_h |
| OLD | NEW |