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

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

Issue 8779003: Chromium side of IDBIndex.count() and IDBObjectStore.count() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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
« no previous file with comments | « no previous file | content/browser/in_process_webkit/indexed_db_dispatcher_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « no previous file | content/browser/in_process_webkit/indexed_db_dispatcher_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698