Chromium Code Reviews| Index: content/browser/in_process_webkit/indexed_db_dispatcher_host.h |
| diff --git a/content/browser/in_process_webkit/indexed_db_dispatcher_host.h b/content/browser/in_process_webkit/indexed_db_dispatcher_host.h |
| index f9a96bddd7e5acb13f56212b1d8137ea4c3bb1f0..ec1ea05cbf6f97d816e715bcfd13c9c348e8f38f 100644 |
| --- a/content/browser/in_process_webkit/indexed_db_dispatcher_host.h |
| +++ b/content/browser/in_process_webkit/indexed_db_dispatcher_host.h |
| @@ -15,7 +15,13 @@ |
| class GURL; |
| struct IndexedDBDatabaseMetadata; |
| +struct IndexedDBHostMsg_DatabaseCount_Params; |
| struct IndexedDBHostMsg_DatabaseCreateObjectStore_Params; |
| +struct IndexedDBHostMsg_DatabaseDeleteRange_Params; |
|
jsbell
2012/12/14 23:04:34
This was only called "DeleteRange" when we had Del
|
| +struct IndexedDBHostMsg_DatabaseGet_Params; |
| +struct IndexedDBHostMsg_DatabaseOpenCursor_Params; |
| +struct IndexedDBHostMsg_DatabasePut_Params; |
| +struct IndexedDBHostMsg_DatabaseSetIndexKeys_Params; |
| struct IndexedDBHostMsg_FactoryDeleteDatabase_Params; |
| struct IndexedDBHostMsg_FactoryGetDatabaseNames_Params; |
| struct IndexedDBHostMsg_FactoryOpen_Params; |
| @@ -105,7 +111,8 @@ class IndexedDBDispatcherHost : public BrowserMessageFilter { |
| // Used in nested classes. |
| typedef std::map<int32, GURL> WebIDBObjectIDToURLMap; |
| - typedef std::map<int32, int64> WebIDBTransactionIDToSizeMap; |
| + typedef std::map<int32, uint64> WebIDBTransactionIPCIDToSizeMap; |
| + typedef std::map<int64, uint64> WebIDBTransactionIDToSizeMap; |
| class DatabaseDispatcherHost { |
| public: |
| @@ -135,9 +142,28 @@ class IndexedDBDispatcherHost : public BrowserMessageFilter { |
| void OnClose(int32 ipc_database_id); |
| void OnDestroyed(int32 ipc_database_id); |
| + void OnGet(const IndexedDBHostMsg_DatabaseGet_Params& params); |
| + void OnPut(const IndexedDBHostMsg_DatabasePut_Params& params); |
| + void OnSetIndexKeys( |
| + const IndexedDBHostMsg_DatabaseSetIndexKeys_Params& params); |
| + void OnSetIndexesReady( |
| + int32 ipc_database_id, |
| + int64 transaction_id, |
| + int64 object_store_id, |
| + const std::vector<int64>& ids); |
| + void OnOpenCursor( |
| + const IndexedDBHostMsg_DatabaseOpenCursor_Params& params); |
| + void OnCount(const IndexedDBHostMsg_DatabaseCount_Params& params); |
| + void OnDelete(const IndexedDBHostMsg_DatabaseDeleteRange_Params& params); |
| + void OnClear(int32 ipc_thread_id, |
| + int32 ipc_response_id, |
| + int32 ipc_database_id, |
| + int64 transaction_id, |
| + int64 object_store_id); |
| IndexedDBDispatcherHost* parent_; |
| IDMap<WebKit::WebIDBDatabase, IDMapOwnPointer> map_; |
| WebIDBObjectIDToURLMap database_url_map_; |
| + WebIDBTransactionIDToSizeMap transaction_size_map_; |
| }; |
| class IndexDispatcherHost { |
| @@ -276,7 +302,7 @@ class IndexedDBDispatcherHost : public BrowserMessageFilter { |
| typedef IDMap<WebKit::WebIDBTransaction, IDMapOwnPointer> MapType; |
| MapType map_; |
| WebIDBObjectIDToURLMap transaction_url_map_; |
| - WebIDBTransactionIDToSizeMap transaction_size_map_; |
| + WebIDBTransactionIPCIDToSizeMap transaction_ipc_size_map_; |
| }; |
| scoped_refptr<IndexedDBContextImpl> indexed_db_context_; |