diff options
Diffstat (limited to 'WebCore/storage/IDBTransactionBackendInterface.h')
-rw-r--r-- | WebCore/storage/IDBTransactionBackendInterface.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/WebCore/storage/IDBTransactionBackendInterface.h b/WebCore/storage/IDBTransactionBackendInterface.h index dff2bd7..39651f1 100644 --- a/WebCore/storage/IDBTransactionBackendInterface.h +++ b/WebCore/storage/IDBTransactionBackendInterface.h @@ -37,6 +37,7 @@ namespace WebCore { class IDBObjectStoreBackendInterface; +class IDBTransactionCallbacks; class SQLiteDatabase; // This class is shared by IDBTransaction (async) and IDBTransactionSync (sync). @@ -51,7 +52,8 @@ public: virtual unsigned short mode() const = 0; virtual void scheduleTask(PassOwnPtr<ScriptExecutionContext::Task>) = 0; virtual void abort() = 0; - virtual SQLiteDatabase* sqliteDatabase() = 0; + virtual int id() const = 0; + virtual void setCallbacks(IDBTransactionCallbacks*) = 0; }; } // namespace WebCore |