| Index: content/browser/in_process_webkit/indexed_db_transaction_callbacks.cc
|
| diff --git a/content/browser/in_process_webkit/indexed_db_transaction_callbacks.cc b/content/browser/in_process_webkit/indexed_db_transaction_callbacks.cc
|
| index c8062421f93c7778fe1bd5e0bc35fefe1360fe34..25eab5619ff32892a640c27eebc5ccb1abacefd2 100644
|
| --- a/content/browser/in_process_webkit/indexed_db_transaction_callbacks.cc
|
| +++ b/content/browser/in_process_webkit/indexed_db_transaction_callbacks.cc
|
| @@ -18,11 +18,13 @@ IndexedDBTransactionCallbacks::~IndexedDBTransactionCallbacks() {
|
| }
|
|
|
| void IndexedDBTransactionCallbacks::onAbort() {
|
| + dispatcher_host_->TransactionAborted(transaction_id_);
|
| dispatcher_host_->Send(
|
| new IndexedDBMsg_TransactionCallbacksAbort(transaction_id_));
|
| }
|
|
|
| void IndexedDBTransactionCallbacks::onComplete() {
|
| + dispatcher_host_->TransactionComplete(transaction_id_);
|
| dispatcher_host_->Send(
|
| new IndexedDBMsg_TransactionCallbacksComplete(transaction_id_));
|
| }
|
|
|