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

Unified Diff: content/common/indexed_db/indexed_db_messages.h

Issue 11114022: IndexedDB: Plumbing to allow cause of transaction abort to be passed to script (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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/indexed_db_dispatcher.cc ('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/indexed_db_messages.h
diff --git a/content/common/indexed_db/indexed_db_messages.h b/content/common/indexed_db/indexed_db_messages.h
index 4d8a27745c21ddcc2446c962dc37a6db5a77a362..01f3a1857d56d2fb01764776aa669eba2d4a5171 100644
--- a/content/common/indexed_db/indexed_db_messages.h
+++ b/content/common/indexed_db/indexed_db_messages.h
@@ -271,9 +271,15 @@ IPC_MESSAGE_CONTROL5(IndexedDBMsg_CallbacksUpgradeNeeded,
int64) /* old_version */
// IDBTransactionCallback message handlers.
-IPC_MESSAGE_CONTROL2(IndexedDBMsg_TransactionCallbacksAbort,
+// TODO(jsbell): Remove once WK99097 has landed.
+IPC_MESSAGE_CONTROL2(IndexedDBMsg_TransactionCallbacksAbortLegacy,
int32 /* thread_id */,
int32 /* transaction_id */)
+IPC_MESSAGE_CONTROL4(IndexedDBMsg_TransactionCallbacksAbort,
+ int32 /* thread_id */,
+ int32 /* transaction_id */,
+ int /* code */,
+ string16 /* message */)
IPC_MESSAGE_CONTROL2(IndexedDBMsg_TransactionCallbacksComplete,
int32 /* thread_id */,
int32 /* transaction_id */)
« no previous file with comments | « content/common/indexed_db/indexed_db_dispatcher.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698