summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/chromium/src/IDBCallbacksProxy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit/chromium/src/IDBCallbacksProxy.cpp')
-rw-r--r--Source/WebKit/chromium/src/IDBCallbacksProxy.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/Source/WebKit/chromium/src/IDBCallbacksProxy.cpp b/Source/WebKit/chromium/src/IDBCallbacksProxy.cpp
index dba28d9..ea0f433 100644
--- a/Source/WebKit/chromium/src/IDBCallbacksProxy.cpp
+++ b/Source/WebKit/chromium/src/IDBCallbacksProxy.cpp
@@ -37,7 +37,6 @@
#include "WebIDBDatabaseError.h"
#include "WebIDBIndexImpl.h"
#include "WebIDBKey.h"
-#include "WebIDBObjectStoreImpl.h"
#include "WebIDBTransactionImpl.h"
#include "WebSerializedScriptValue.h"
@@ -84,11 +83,6 @@ void IDBCallbacksProxy::onSuccess(PassRefPtr<IDBKey> idbKey)
m_callbacks->onSuccess(WebKit::WebIDBKey(idbKey));
}
-void IDBCallbacksProxy::onSuccess(PassRefPtr<IDBObjectStoreBackendInterface> backend)
-{
- m_callbacks->onSuccess(new WebKit::WebIDBObjectStoreImpl(backend));
-}
-
void IDBCallbacksProxy::onSuccess(PassRefPtr<IDBTransactionBackendInterface> backend)
{
m_callbacks->onSuccess(new WebKit::WebIDBTransactionImpl(backend));
@@ -99,6 +93,11 @@ void IDBCallbacksProxy::onSuccess(PassRefPtr<SerializedScriptValue> serializedSc
m_callbacks->onSuccess(WebKit::WebSerializedScriptValue(serializedScriptValue));
}
+void IDBCallbacksProxy::onBlocked()
+{
+ m_callbacks->onBlocked();
+}
+
} // namespace WebCore
#endif // ENABLE(INDEXED_DATABASE)