| Index: content/browser/indexed_db/indexed_db_dispatcher_host.h
|
| diff --git a/content/browser/indexed_db/indexed_db_dispatcher_host.h b/content/browser/indexed_db/indexed_db_dispatcher_host.h
|
| index 8f3bda65718b5d983abe6026afd170f236c50333..204a033b5387b7d19dc54ca97676005eca1f84ec 100644
|
| --- a/content/browser/indexed_db/indexed_db_dispatcher_host.h
|
| +++ b/content/browser/indexed_db/indexed_db_dispatcher_host.h
|
| @@ -171,6 +171,10 @@ class IndexedDBDispatcherHost : public BrowserMessageFilter {
|
| void OnDeleteObjectStore(int32_t ipc_database_id,
|
| int64_t transaction_id,
|
| int64_t object_store_id);
|
| + void OnRenameObjectStore(int32_t ipc_database_id,
|
| + int64_t transaction_id,
|
| + int64_t object_store_id,
|
| + const base::string16& new_name);
|
| void OnCreateTransaction(
|
| const IndexedDBHostMsg_DatabaseCreateTransaction_Params&);
|
| void OnClose(int32_t ipc_database_id);
|
| @@ -209,6 +213,11 @@ class IndexedDBDispatcherHost : public BrowserMessageFilter {
|
| int64_t transaction_id,
|
| int64_t object_store_id,
|
| int64_t index_id);
|
| + void OnRenameIndex(int32_t ipc_database_id,
|
| + int64_t transaction_id,
|
| + int64_t object_store_id,
|
| + int64_t index_id,
|
| + const base::string16& new_name);
|
|
|
| void OnAbort(int32_t ipc_database_id, int64_t transaction_id);
|
| void OnCommit(int32_t ipc_database_id, int64_t transaction_id);
|
|
|