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

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: Fix review nits 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
« no previous file with comments | « content/common/indexed_db/proxy_webidbtransaction_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..75d47437510ea808411a95456ee67dd86096724e 100644
--- a/content/common/indexed_db/proxy_webidbtransaction_impl.cc
+++ b/content/common/indexed_db/proxy_webidbtransaction_impl.cc
@@ -30,8 +30,7 @@ RendererWebIDBTransactionImpl::~RendererWebIDBTransactionImpl() {
idb_transaction_id_));
}
-int RendererWebIDBTransactionImpl::mode() const
-{
+int RendererWebIDBTransactionImpl::mode() const {
int mode;
IndexedDBDispatcher::Send(new IndexedDBHostMsg_TransactionMode(
idb_transaction_id_, &mode));
@@ -40,8 +39,7 @@ int RendererWebIDBTransactionImpl::mode() const
WebIDBObjectStore* RendererWebIDBTransactionImpl::objectStore(
const WebString& name,
- WebKit::WebExceptionCode& ec)
-{
+ WebKit::WebExceptionCode& ec) {
int object_store_id;
IndexedDBDispatcher::Send(
new IndexedDBHostMsg_TransactionObjectStore(
@@ -51,22 +49,24 @@ WebIDBObjectStore* RendererWebIDBTransactionImpl::objectStore(
return new RendererWebIDBObjectStoreImpl(object_store_id);
}
-void RendererWebIDBTransactionImpl::abort()
-{
+void RendererWebIDBTransactionImpl::commit() {
+ IndexedDBDispatcher::Send(new IndexedDBHostMsg_TransactionCommit(
+ idb_transaction_id_));
+}
+
+void RendererWebIDBTransactionImpl::abort() {
IndexedDBDispatcher::Send(new IndexedDBHostMsg_TransactionAbort(
idb_transaction_id_));
}
-void RendererWebIDBTransactionImpl::didCompleteTaskEvents()
-{
+void RendererWebIDBTransactionImpl::didCompleteTaskEvents() {
IndexedDBDispatcher::Send(
new IndexedDBHostMsg_TransactionDidCompleteTaskEvents(
idb_transaction_id_));
}
void RendererWebIDBTransactionImpl::setCallbacks(
- WebIDBTransactionCallbacks* callbacks)
-{
+ WebIDBTransactionCallbacks* callbacks) {
IndexedDBDispatcher* dispatcher =
IndexedDBDispatcher::ThreadSpecificInstance();
dispatcher->RegisterWebIDBTransactionCallbacks(callbacks,
« no previous file with comments | « content/common/indexed_db/proxy_webidbtransaction_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698