Index: content/common/indexed_db/indexed_db_dispatcher.h |
diff --git a/content/common/indexed_db/indexed_db_dispatcher.h b/content/common/indexed_db/indexed_db_dispatcher.h |
index 569658a8365aac4d5c9428d9d4ca425cb5296f58..e9adb14e6d82cae7b2c1fe757dc6886ac01163c6 100644 |
--- a/content/common/indexed_db/indexed_db_dispatcher.h |
+++ b/content/common/indexed_db/indexed_db_dispatcher.h |
@@ -256,7 +256,12 @@ class CONTENT_EXPORT IndexedDBDispatcher |
int32 transaction_id, |
int32 database_id, |
int64 old_version); |
- void OnAbort(int32 thread_id, int32 transaction_id); |
+ // TODO(jsbell): Remove once WK99097 has landed. |
+ void OnAbortLegacy(int32 thread_id, int32 transaction_id); |
+ void OnAbort(int32 thread_id, |
+ int32 transaction_id, |
+ int code, |
+ const string16& message); |
void OnComplete(int32 thread_id, int32 transaction_id); |
void OnForcedClose(int32 thread_id, int32 database_id); |
void OnVersionChange(int32 thread_id, |