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 88bff9659109fd19f0e6e7beb2cba581d5429006..22cd0b382e7ac227a207fcec43537f155da82a69 100644 |
| --- a/content/browser/in_process_webkit/indexed_db_dispatcher_host.h |
| +++ b/content/browser/in_process_webkit/indexed_db_dispatcher_host.h |
| @@ -19,8 +19,10 @@ struct IndexedDBHostMsg_FactoryGetDatabaseNames_Params; |
| struct IndexedDBHostMsg_FactoryDeleteDatabase_Params; |
| struct IndexedDBHostMsg_FactoryOpen_Params; |
| struct IndexedDBHostMsg_IndexOpenCursor_Params; |
| +struct IndexedDBHostMsg_IndexCount_Params; |
|
hans
2011/12/05 12:06:22
sort order
|
| struct IndexedDBHostMsg_ObjectStoreCreateIndex_Params; |
| struct IndexedDBHostMsg_ObjectStoreOpenCursor_Params; |
| +struct IndexedDBHostMsg_ObjectStoreCount_Params; |
|
hans
2011/12/05 12:06:22
ditto
|
| struct IndexedDBHostMsg_ObjectStorePut_Params; |
| namespace WebKit { |
| @@ -152,6 +154,8 @@ class IndexedDBDispatcherHost : public BrowserMessageFilter { |
| WebKit::WebExceptionCode* ec); |
| void OnOpenKeyCursor(const IndexedDBHostMsg_IndexOpenCursor_Params& params, |
| WebKit::WebExceptionCode* ec); |
| + void OnCount(const IndexedDBHostMsg_IndexCount_Params& params, |
| + WebKit::WebExceptionCode* ec); |
|
hans
2011/12/05 12:06:22
indentation looks a little off here
|
| void OnGetObject(int idb_index_id, |
| int32 response_id, |
| const IndexedDBKey& key, |
| @@ -211,6 +215,9 @@ class IndexedDBDispatcherHost : public BrowserMessageFilter { |
| void OnOpenCursor( |
| const IndexedDBHostMsg_ObjectStoreOpenCursor_Params& params, |
| WebKit::WebExceptionCode* ec); |
| + void OnCount( |
| + const IndexedDBHostMsg_ObjectStoreCount_Params& params, |
| + WebKit::WebExceptionCode* ec); |
| void OnDestroyed(int32 idb_object_store_id); |
| IndexedDBDispatcherHost* parent_; |