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

Unified Diff: content/browser/in_process_webkit/indexed_db_dispatcher_host.h

Issue 11567029: Proxy new objectstore/index methods through IPC (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix nits, use faster copies Created 7 years, 12 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/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..41e03d894d71125ffe54e4bd199e471470fe83dd 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;
+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,29 @@ 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 OnDeleteRange(
+ 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 +303,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_;

Powered by Google App Engine
This is Rietveld 408576698