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

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

Issue 12129002: Remove deprecated IPC code for onUpgradeNeeded/onSuccess/metadata (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 31a9daa9ef308281041ebc05c4a6127617e29f5f..16b4d5140003eb11c981c3f572322bd4baefc804 100644
--- a/content/common/indexed_db/indexed_db_messages.h
+++ b/content/common/indexed_db/indexed_db_messages.h
@@ -302,10 +302,6 @@ IPC_MESSAGE_CONTROL1(IndexedDBMsg_CallbacksSuccessCursorAdvance,
IPC_MESSAGE_CONTROL1(IndexedDBMsg_CallbacksSuccessCursorPrefetch,
IndexedDBMsg_CallbacksSuccessCursorPrefetch_Params)
-IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessIDBDatabaseOld,
- int32 /* ipc_thread_id */,
- int32 /* ipc_response_id */,
- int32 /* ipc_database_id */)
IPC_MESSAGE_CONTROL4(IndexedDBMsg_CallbacksSuccessIDBDatabase,
int32 /* ipc_thread_id */,
int32 /* ipc_response_id */,
@@ -348,11 +344,6 @@ IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksIntBlocked,
int32 /* ipc_thread_id */,
int32 /* ipc_response_id */,
int64 /* existing_version */)
-IPC_MESSAGE_CONTROL4(IndexedDBMsg_CallbacksUpgradeNeededOld,
- int32, /* ipc_thread_id */
- int32, /* ipc_response_id */
- int32, /* ipc_database_id */
- int64) /* old_version */
IPC_MESSAGE_CONTROL5(IndexedDBMsg_CallbacksUpgradeNeeded,
int32, /* ipc_thread_id */
int32, /* ipc_response_id */
@@ -374,7 +365,6 @@ IPC_MESSAGE_CONTROL4(IndexedDBMsg_DatabaseCallbacksIntVersionChange,
int32, /* ipc_database_id */
int64, /* old_version */
int64) /* new_version */
-// IDBTransactionCallback message handlers.
IPC_MESSAGE_CONTROL5(IndexedDBMsg_DatabaseCallbacksAbort,
int32, /* ipc_thread_id */
int32, /* ipc_database_id */
@@ -433,11 +423,6 @@ IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_FactoryOpen,
IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_FactoryDeleteDatabase,
IndexedDBHostMsg_FactoryDeleteDatabase_Params)
-// WebIDBDatabase::metadata() message.
-IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_DatabaseMetadata,
- int32, /* ipc_database_id */
- IndexedDBDatabaseMetadata /* metadata */)
-
// WebIDBDatabase::createObjectStore() message.
IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_DatabaseCreateObjectStore,
IndexedDBHostMsg_DatabaseCreateObjectStore_Params)
@@ -449,16 +434,6 @@ IPC_MESSAGE_CONTROL3(IndexedDBHostMsg_DatabaseDeleteObjectStore,
int64) /* object_store_id */
// WebIDBDatabase::createTransaction() message.
-// TODO: make this message async.
jsbell 2013/01/31 22:23:51 Victory!
-IPC_SYNC_MESSAGE_CONTROL5_1(IndexedDBHostMsg_DatabaseCreateTransactionOld,
- int32, /* ipc_thread_id */
- int32, /* ipc_database_id */
- int64, /* transaction_id */
- std::vector<int64>, /* object_stores */
- int32, /* mode */
- int32) /* ipc_transaction_id */
-
-
IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_DatabaseCreateTransaction,
IndexedDBHostMsg_DatabaseCreateTransaction_Params)
« no previous file with comments | « content/common/indexed_db/indexed_db_dispatcher_unittest.cc ('k') | content/common/indexed_db/proxy_webidbdatabase_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698