diff options
Diffstat (limited to 'Source/WebKit/chromium/src/WebIDBTransactionCallbacksImpl.cpp')
-rw-r--r-- | Source/WebKit/chromium/src/WebIDBTransactionCallbacksImpl.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/WebKit/chromium/src/WebIDBTransactionCallbacksImpl.cpp b/Source/WebKit/chromium/src/WebIDBTransactionCallbacksImpl.cpp index 2f16477d2..4d41e9fc6 100644 --- a/Source/WebKit/chromium/src/WebIDBTransactionCallbacksImpl.cpp +++ b/Source/WebKit/chromium/src/WebIDBTransactionCallbacksImpl.cpp @@ -28,7 +28,9 @@ #if ENABLE(INDEXED_DATABASE) +#include "IDBDatabaseError.h" #include "IDBTransactionCallbacks.h" +#include "WebIDBDatabaseError.h" using namespace WebCore; @@ -43,9 +45,9 @@ WebIDBTransactionCallbacksImpl::~WebIDBTransactionCallbacksImpl() { } -void WebIDBTransactionCallbacksImpl::onAbort() +void WebIDBTransactionCallbacksImpl::onAbort(const WebIDBDatabaseError& error) { - m_callbacks->onAbort(); + m_callbacks->onAbort(error); } void WebIDBTransactionCallbacksImpl::onComplete() |