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..783644929bb1f8ac35dafaec1f22b59c5b72d3ca 100644 |
--- a/content/browser/in_process_webkit/indexed_db_transaction_callbacks.cc |
+++ b/content/browser/in_process_webkit/indexed_db_transaction_callbacks.cc |
@@ -23,11 +23,13 @@ void IndexedDBTransactionCallbacks::onAbort() { |
} |
void IndexedDBTransactionCallbacks::onComplete() { |
+ dispatcher_host_->TransactionComplete(transaction_id_); |
dispatcher_host_->Send( |
new IndexedDBMsg_TransactionCallbacksComplete(transaction_id_)); |
} |
void IndexedDBTransactionCallbacks::onTimeout() { |
+ NOTREACHED(); |
michaeln
2011/08/05 17:15:37
is this truely not reached? if so the following li
dgrogan
2011/08/05 18:02:32
Removed.
|
dispatcher_host_->Send( |
new IndexedDBMsg_TransactionCallbacksTimeout(transaction_id_)); |
} |