Index: Source/modules/indexeddb/WebIDBDatabaseCallbacksImpl.cpp |
diff --git a/Source/modules/indexeddb/WebIDBDatabaseCallbacksImpl.cpp b/Source/modules/indexeddb/WebIDBDatabaseCallbacksImpl.cpp |
index 60b95fd3ae09d37073f8f224f4d1ad7be0f5a158..89bf2168912788e818de3caac63c835ed1483130 100644 |
--- a/Source/modules/indexeddb/WebIDBDatabaseCallbacksImpl.cpp |
+++ b/Source/modules/indexeddb/WebIDBDatabaseCallbacksImpl.cpp |
@@ -26,7 +26,7 @@ |
#include "config.h" |
#include "modules/indexeddb/WebIDBDatabaseCallbacksImpl.h" |
-#include "core/dom/DOMError.h" |
+#include "core/dom/DOMException.h" |
namespace blink { |
@@ -57,7 +57,7 @@ void WebIDBDatabaseCallbacksImpl::onVersionChange(long long oldVersion, long lon |
void WebIDBDatabaseCallbacksImpl::onAbort(long long transactionId, const WebIDBDatabaseError& error) |
{ |
- m_callbacks->onAbort(transactionId, DOMError::create(error.code(), error.message())); |
+ m_callbacks->onAbort(transactionId, DOMException::create(error.code(), error.message())); |
} |
void WebIDBDatabaseCallbacksImpl::onComplete(long long transactionId) |