summaryrefslogtreecommitdiff
path: root/Source/WebKit/chromium/src/IDBTransactionBackendProxy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit/chromium/src/IDBTransactionBackendProxy.cpp')
-rw-r--r--Source/WebKit/chromium/src/IDBTransactionBackendProxy.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/WebKit/chromium/src/IDBTransactionBackendProxy.cpp b/Source/WebKit/chromium/src/IDBTransactionBackendProxy.cpp
index 88f9852ac..f0837fef6 100644
--- a/Source/WebKit/chromium/src/IDBTransactionBackendProxy.cpp
+++ b/Source/WebKit/chromium/src/IDBTransactionBackendProxy.cpp
@@ -62,6 +62,14 @@ PassRefPtr<IDBObjectStoreBackendInterface> IDBTransactionBackendProxy::objectSto
return IDBObjectStoreBackendProxy::create(objectStore.release());
}
+PassRefPtr<WebCore::IDBObjectStoreBackendInterface> IDBTransactionBackendProxy::objectStore(int64_t indexId, ExceptionCode& ec)
+{
+ OwnPtr<WebIDBObjectStore> objectStore = adoptPtr(m_webIDBTransaction->objectStore(indexId, ec));
+ if (!objectStore)
+ return 0;
+ return IDBObjectStoreBackendProxy::create(objectStore.release());
+}
+
void IDBTransactionBackendProxy::commit()
{
m_webIDBTransaction->commit();