Chromium Code Reviews| 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 68af020df66f3263d23be24d53fb28527371c7ed..02d8fb04ecea9adf4877adc52bd70614e2d9baa7 100644 |
| --- a/content/common/indexed_db/indexed_db_messages.h |
| +++ b/content/common/indexed_db/indexed_db_messages.h |
| @@ -485,6 +485,16 @@ IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_FactoryDeleteDatabase, |
| IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_AckReceivedBlobs, |
| std::vector<std::string>) /* uuids */ |
| +// WebIDBDatabase::deleteObjectStore() message. |
|
dmurph
2016/06/23 21:53:05
Remove this comment.
palakj1
2016/06/24 00:03:01
Changed.
|
| +IPC_MESSAGE_CONTROL3(IndexedDBHostMsg_DatabaseObserve, |
| + int32_t, /* ipc_database_id */ |
| + int64_t, /* transaction_id */ |
| + int32_t) /* observer_id */ |
| + |
| +IPC_MESSAGE_CONTROL2(IndexedDBHostMsg_DatabaseUnobserve, |
| + int32_t, /* ipc_database_id */ |
| + std::vector<int32_t>) /* list of observer_id */ |
| + |
| // WebIDBDatabase::createObjectStore() message. |
| IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_DatabaseCreateObjectStore, |
| IndexedDBHostMsg_DatabaseCreateObjectStore_Params) |