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 30 matching lines...) Expand all Loading... |
41 class ChangeVersionData; | 41 class ChangeVersionData; |
42 class DatabaseCallback; | 42 class DatabaseCallback; |
43 class DatabaseContext; | 43 class DatabaseContext; |
44 class SecurityOrigin; | 44 class SecurityOrigin; |
45 class SQLTransaction; | 45 class SQLTransaction; |
46 class SQLTransactionBackend; | 46 class SQLTransactionBackend; |
47 class SQLTransactionCallback; | 47 class SQLTransactionCallback; |
48 class SQLTransactionErrorCallback; | 48 class SQLTransactionErrorCallback; |
49 class VoidCallback; | 49 class VoidCallback; |
50 | 50 |
51 class Database : public DatabaseBase, public DatabaseBackend, public ScriptWrapp
able { | 51 class Database FINAL : public DatabaseBase, public DatabaseBackend, public Scrip
tWrappable { |
52 public: | 52 public: |
53 virtual ~Database(); | 53 virtual ~Database(); |
54 | 54 |
55 // Direct support for the DOM API | 55 // Direct support for the DOM API |
56 virtual String version() const; | 56 virtual String version() const OVERRIDE; |
57 void changeVersion(const String& oldVersion, const String& newVersion, PassO
wnPtr<SQLTransactionCallback>, PassOwnPtr<SQLTransactionErrorCallback>, PassOwnP
tr<VoidCallback> successCallback); | 57 void changeVersion(const String& oldVersion, const String& newVersion, PassO
wnPtr<SQLTransactionCallback>, PassOwnPtr<SQLTransactionErrorCallback>, PassOwnP
tr<VoidCallback> successCallback); |
58 void transaction(PassOwnPtr<SQLTransactionCallback>, PassOwnPtr<SQLTransacti
onErrorCallback>, PassOwnPtr<VoidCallback> successCallback); | 58 void transaction(PassOwnPtr<SQLTransactionCallback>, PassOwnPtr<SQLTransacti
onErrorCallback>, PassOwnPtr<VoidCallback> successCallback); |
59 void readTransaction(PassOwnPtr<SQLTransactionCallback>, PassOwnPtr<SQLTrans
actionErrorCallback>, PassOwnPtr<VoidCallback> successCallback); | 59 void readTransaction(PassOwnPtr<SQLTransactionCallback>, PassOwnPtr<SQLTrans
actionErrorCallback>, PassOwnPtr<VoidCallback> successCallback); |
60 | 60 |
61 // Internal engine support | 61 // Internal engine support |
62 static Database* from(DatabaseBackend*); | 62 static Database* from(DatabaseBackend*); |
63 DatabaseContext* databaseContext() const { return m_databaseContext.get(); } | 63 DatabaseContext* databaseContext() const { return m_databaseContext.get(); } |
64 | 64 |
65 Vector<String> tableNames(); | 65 Vector<String> tableNames(); |
66 | 66 |
67 virtual SecurityOrigin* securityOrigin() const; | 67 virtual SecurityOrigin* securityOrigin() const OVERRIDE; |
68 | 68 |
69 virtual void closeImmediately(); | 69 virtual void closeImmediately() OVERRIDE; |
70 | 70 |
71 void scheduleTransactionCallback(SQLTransaction*); | 71 void scheduleTransactionCallback(SQLTransaction*); |
72 | 72 |
73 private: | 73 private: |
74 Database(PassRefPtr<DatabaseContext>, const String& name, | 74 Database(PassRefPtr<DatabaseContext>, const String& name, |
75 const String& expectedVersion, const String& displayName, unsigned long
estimatedSize); | 75 const String& expectedVersion, const String& displayName, unsigned long
estimatedSize); |
76 PassRefPtr<DatabaseBackend> backend(); | 76 PassRefPtr<DatabaseBackend> backend(); |
77 static PassRefPtr<Database> create(ExecutionContext*, PassRefPtr<DatabaseBac
kendBase>); | 77 static PassRefPtr<Database> create(ExecutionContext*, PassRefPtr<DatabaseBac
kendBase>); |
78 | 78 |
79 void runTransaction(PassOwnPtr<SQLTransactionCallback>, PassOwnPtr<SQLTransa
ctionErrorCallback>, | 79 void runTransaction(PassOwnPtr<SQLTransactionCallback>, PassOwnPtr<SQLTransa
ctionErrorCallback>, |
(...skipping 10 matching lines...) Expand all Loading... |
90 friend class DatabaseManager; | 90 friend class DatabaseManager; |
91 friend class DatabaseServer; // FIXME: remove this when the backend has been
split out. | 91 friend class DatabaseServer; // FIXME: remove this when the backend has been
split out. |
92 friend class DatabaseBackend; // FIXME: remove this when the backend has bee
n split out. | 92 friend class DatabaseBackend; // FIXME: remove this when the backend has bee
n split out. |
93 friend class SQLStatement; | 93 friend class SQLStatement; |
94 friend class SQLTransaction; | 94 friend class SQLTransaction; |
95 }; | 95 }; |
96 | 96 |
97 } // namespace WebCore | 97 } // namespace WebCore |
98 | 98 |
99 #endif // Database_h | 99 #endif // Database_h |
OLD | NEW |