OLD | NEW |
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 12 matching lines...) Expand all Loading... |
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 | 32 |
33 namespace WebCore { | 33 namespace blink { |
34 | 34 |
35 class Database; | 35 class Database; |
36 class DatabaseCallback; | 36 class DatabaseCallback; |
37 class DatabaseSync; | 37 class DatabaseSync; |
38 class ExceptionState; | 38 class ExceptionState; |
39 class WorkerGlobalScope; | 39 class WorkerGlobalScope; |
40 | 40 |
41 class WorkerGlobalScopeWebDatabase { | 41 class WorkerGlobalScopeWebDatabase { |
42 public: | 42 public: |
43 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&); |
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&); | 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&); |
45 | 45 |
46 private: | 46 private: |
47 WorkerGlobalScopeWebDatabase() { }; | 47 WorkerGlobalScopeWebDatabase() { }; |
48 ~WorkerGlobalScopeWebDatabase() { }; | 48 ~WorkerGlobalScopeWebDatabase() { }; |
49 }; | 49 }; |
50 | 50 |
51 } // namespace WebCore | 51 } // namespace blink |
52 | 52 |
53 #endif // WorkerGlobalScopeWebDatabase_h | 53 #endif // WorkerGlobalScopeWebDatabase_h |
OLD | NEW |