| Index: trunk/src/content/browser/indexed_db/indexed_db_transaction.cc
|
| ===================================================================
|
| --- trunk/src/content/browser/indexed_db/indexed_db_transaction.cc (revision 260206)
|
| +++ trunk/src/content/browser/indexed_db/indexed_db_transaction.cc (working copy)
|
| @@ -259,9 +259,10 @@
|
| while (!abort_task_stack_.empty())
|
| abort_task_stack_.pop().Run(NULL);
|
|
|
| - IndexedDBDatabaseError error(blink::WebIDBDatabaseExceptionUnknownError,
|
| - "Internal error committing transaction.");
|
| - callbacks_->OnAbort(id_, error);
|
| + callbacks_->OnAbort(
|
| + id_,
|
| + IndexedDBDatabaseError(blink::WebIDBDatabaseExceptionUnknownError,
|
| + "Internal error committing transaction."));
|
| database_->TransactionFinished(this, false);
|
| database_->TransactionCommitFailed();
|
| }
|
|
|