Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: third_party/WebKit/Source/modules/webdatabase/DatabaseTask.h

Issue 1713143002: Remove most of the blink::Task wrapping of WTF::Function outside WebTaskRunner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698