Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1010)

Unified Diff: content/browser/in_process_webkit/indexed_db_transaction_callbacks.cc

Issue 7470008: Improve IndexedDB's quota support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: respond to comments, add clean up when renderer process goes away Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/in_process_webkit/indexed_db_quota_client_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_));
}
« no previous file with comments | « content/browser/in_process_webkit/indexed_db_quota_client_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698