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

Side by Side Diff: Source/modules/webdatabase/WorkerGlobalScopeWebDatabase.h

Issue 334263022: Include wtf/RefCounted.h less often in modules/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
« no previous file with comments | « Source/modules/webdatabase/SQLResultSetRowList.h ('k') | Source/modules/websockets/WebSocket.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2008, 2009 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 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 11 matching lines...) Expand all
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 * 24 *
25 */ 25 */
26 26
27 #ifndef WorkerGlobalScopeWebDatabase_h 27 #ifndef WorkerGlobalScopeWebDatabase_h
28 #define WorkerGlobalScopeWebDatabase_h 28 #define WorkerGlobalScopeWebDatabase_h
29 29
30 #include "platform/heap/Handle.h" 30 #include "platform/heap/Handle.h"
31 #include "wtf/Forward.h" 31 #include "wtf/Forward.h"
32 #include "wtf/PassRefPtr.h"
33 #include "wtf/RefCounted.h"
34 #include "wtf/RefPtr.h"
35 32
36 namespace WebCore { 33 namespace WebCore {
37 34
38 class Database; 35 class Database;
39 class DatabaseCallback; 36 class DatabaseCallback;
40 class DatabaseSync; 37 class DatabaseSync;
41 class ExceptionState; 38 class ExceptionState;
42 class WorkerGlobalScope; 39 class WorkerGlobalScope;
43 40
44 class WorkerGlobalScopeWebDatabase { 41 class WorkerGlobalScopeWebDatabase {
45 public: 42 public:
46 static PassRefPtrWillBeRawPtr<Database> openDatabase(WorkerGlobalScope&, con st String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState&); 43 static PassRefPtrWillBeRawPtr<Database> openDatabase(WorkerGlobalScope&, con st String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState&);
47 static PassRefPtrWillBeRawPtr<DatabaseSync> openDatabaseSync(WorkerGlobalSco pe&, const String& name, const String& version, const String& displayName, unsig ned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, Exception State&); 44 static PassRefPtrWillBeRawPtr<DatabaseSync> openDatabaseSync(WorkerGlobalSco pe&, const String& name, const String& version, const String& displayName, unsig ned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, Exception State&);
48 45
49 private: 46 private:
50 WorkerGlobalScopeWebDatabase() { }; 47 WorkerGlobalScopeWebDatabase() { };
51 ~WorkerGlobalScopeWebDatabase() { }; 48 ~WorkerGlobalScopeWebDatabase() { };
52 }; 49 };
53 50
54 } // namespace WebCore 51 } // namespace WebCore
55 52
56 #endif // WorkerGlobalScopeWebDatabase_h 53 #endif // WorkerGlobalScopeWebDatabase_h
OLDNEW
« no previous file with comments | « Source/modules/webdatabase/SQLResultSetRowList.h ('k') | Source/modules/websockets/WebSocket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698