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

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

Issue 11194026: Flush out IPC for onSuccess() / onSuccess(long long) (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Remove dead code 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
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 01f3a1857d56d2fb01764776aa669eba2d4a5171..0199ffd4f24b2b72762bec4cd2495a1c269318dd 100644
--- a/content/common/indexed_db/indexed_db_messages.h
+++ b/content/common/indexed_db/indexed_db_messages.h
@@ -229,6 +229,10 @@ IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessIDBDatabase,
int32 /* thread_id */,
int32 /* response_id */,
int32 /* idb_database_id */)
+IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessIDBDatabaseDeleted,
jsbell 2012/10/17 17:24:01 This looks extraneous - remove?
+ int32 /* thread_id */,
+ int32 /* response_id */,
+ int32 /* idb_database_id */)
IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessIndexedDBKey,
int32 /* thread_id */,
int32 /* response_id */,
@@ -247,6 +251,13 @@ IPC_MESSAGE_CONTROL5(IndexedDBMsg_CallbacksSuccessSerializedScriptValueWithKey,
content::SerializedScriptValue /* value */,
content::IndexedDBKey /* indexed_db_key */,
content::IndexedDBKeyPath /* indexed_db_keypath */)
+IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessInteger,
+ int32 /* thread_id */,
+ int32 /* response_id */,
+ int64 /* value */)
+IPC_MESSAGE_CONTROL2(IndexedDBMsg_CallbacksSuccessUndefined,
+ int32 /* thread_id */,
+ int32 /* response_id */)
IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessStringList,
int32 /* thread_id */,
int32 /* response_id */,

Powered by Google App Engine
This is Rietveld 408576698