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

Unified Diff: content/common/indexed_db/proxy_webidbtransaction_impl.cc

Issue 10692017: IndexedDB: IPC plumbing for WebKit::WebIDBTransaction::commit() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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
Index: content/common/indexed_db/proxy_webidbtransaction_impl.cc
diff --git a/content/common/indexed_db/proxy_webidbtransaction_impl.cc b/content/common/indexed_db/proxy_webidbtransaction_impl.cc
index 2a08b022db179bbed1549fc4d6e99a52c7027332..f97590ecaceb03adb8fc44035078fd51ebb1f9dd 100644
--- a/content/common/indexed_db/proxy_webidbtransaction_impl.cc
+++ b/content/common/indexed_db/proxy_webidbtransaction_impl.cc
@@ -51,6 +51,12 @@ WebIDBObjectStore* RendererWebIDBTransactionImpl::objectStore(
return new RendererWebIDBObjectStoreImpl(object_store_id);
}
+void RendererWebIDBTransactionImpl::commit()
+{
jam 2012/06/27 20:34:16 nit: brace bracket on prev line, same for the rest
jsbell 2012/06/27 20:40:35 Done, throughout this file and one other instance
+ IndexedDBDispatcher::Send(new IndexedDBHostMsg_TransactionCommit(
+ idb_transaction_id_));
+}
+
void RendererWebIDBTransactionImpl::abort()
{
IndexedDBDispatcher::Send(new IndexedDBHostMsg_TransactionAbort(

Powered by Google App Engine
This is Rietveld 408576698