| Index: chrome/common/render_messages_internal.h
|
| ===================================================================
|
| --- chrome/common/render_messages_internal.h (revision 56862)
|
| +++ chrome/common/render_messages_internal.h (working copy)
|
| @@ -874,10 +874,6 @@
|
| int /* code */,
|
| string16 /* message */)
|
|
|
| - // IDBTransactionCallback message handlers.
|
| - IPC_MESSAGE_CONTROL1(ViewMsg_IDBTransactionCallbacksAbort,
|
| - int /* transaction_id */)
|
| -
|
| #if defined(IPC_MESSAGE_LOG_ENABLED)
|
| // Tell the renderer process to begin or end IPC message logging.
|
| IPC_MESSAGE_CONTROL1(ViewMsg_SetIPCLoggingEnabled,
|
| @@ -2283,10 +2279,6 @@
|
| IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBFactoryOpen,
|
| ViewHostMsg_IDBFactoryOpen_Params)
|
|
|
| - // WebIDBFactory::abortPendingTransactions() message.
|
| - IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBFactoryAbortPendingTransactions,
|
| - std::vector<int32> /* transaction_ids */)
|
| -
|
| // WebIDBDatabase::name() message.
|
| IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_IDBDatabaseName,
|
| int32, /* idb_database_id */
|
| @@ -2325,18 +2317,6 @@
|
| int32, /* response_id */
|
| string16 /* name */)
|
|
|
| - // WebIDBDatabase::transaction() message.
|
| - // TODO: make this message async. Have the renderer create a
|
| - // temporary ID and keep a map in the browser process of real
|
| - // IDs to temporary IDs. We can then update the transaction
|
| - // to its real ID asynchronously.
|
| - IPC_SYNC_MESSAGE_CONTROL4_1(ViewHostMsg_IDBDatabaseTransaction,
|
| - int32, /* idb_database_id */
|
| - std::vector<string16>, /* object_stores */
|
| - int32, /* mode */
|
| - int32, /* timeout */
|
| - int32 /* idb_transaction_id */)
|
| -
|
| // WebIDBDatabase::~WebIDBDatabase() message.
|
| IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBDatabaseDestroyed,
|
| int32 /* idb_database_id */)
|
| @@ -2424,10 +2404,6 @@
|
| IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBCursorDestroyed,
|
| int32 /* idb_cursor_id */)
|
|
|
| - // WebIDBTransaction::~WebIDBTransaction() message.
|
| - IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBTransactionDestroyed,
|
| - int32 /* idb_index_id */)
|
| -
|
| // Get file size in bytes. Set result to -1 if failed to get the file size.
|
| IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_GetFileSize,
|
| FilePath /* path */,
|
|
|