Index: content/browser/indexed_db/indexed_db_database_callbacks_wrapper.cc |
diff --git a/content/browser/indexed_db/indexed_db_database_callbacks_wrapper.cc b/content/browser/indexed_db/indexed_db_database_callbacks_wrapper.cc |
index a5a2f67f08ddc86c3674e941bd5781faa04abdc0..3b3af7004908ebe0bef5c5c9141bc638a8da4897 100644 |
--- a/content/browser/indexed_db/indexed_db_database_callbacks_wrapper.cc |
+++ b/content/browser/indexed_db/indexed_db_database_callbacks_wrapper.cc |
@@ -30,9 +30,7 @@ void IndexedDBDatabaseCallbacksWrapper::OnAbort( |
const IndexedDBDatabaseError& error) { |
if (!callbacks_) |
return; |
- callbacks_->onAbort( |
- transaction_id, |
- WebKit::WebIDBDatabaseError(error.code(), error.message())); |
+ callbacks_->onAbort(transaction_id, error); |
} |
void IndexedDBDatabaseCallbacksWrapper::OnComplete(int64 transaction_id) { |
if (!callbacks_) |