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

Unified Diff: content/renderer/indexed_db_dispatcher.h

Issue 8779003: Chromium side of IDBIndex.count() and IDBObjectStore.count() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sorted declarations 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
Index: content/renderer/indexed_db_dispatcher.h
diff --git a/content/renderer/indexed_db_dispatcher.h b/content/renderer/indexed_db_dispatcher.h
index 6f7deef941d45ae01d482dbef49e5eb88dc3d2d3..f8330a264aff24a960b655f48b5faaa57c5175e1 100644
--- a/content/renderer/indexed_db_dispatcher.h
+++ b/content/renderer/indexed_db_dispatcher.h
@@ -113,6 +113,13 @@ class IndexedDBDispatcher : public IPC::Channel::Listener {
const WebKit::WebIDBTransaction& transaction,
WebKit::WebExceptionCode* ec);
+ void RequestIDBIndexCount(
+ const WebKit::WebIDBKeyRange& idb_key_range,
+ WebKit::WebIDBCallbacks* callbacks,
+ int32 idb_index_id,
+ const WebKit::WebIDBTransaction& transaction,
+ WebKit::WebExceptionCode* ec);
+
void RequestIDBIndexGetObject(const IndexedDBKey& key,
WebKit::WebIDBCallbacks* callbacks,
int32 idb_index_id,
@@ -160,6 +167,13 @@ class IndexedDBDispatcher : public IPC::Channel::Listener {
const WebKit::WebIDBTransaction& transaction,
WebKit::WebExceptionCode* ec);
+ void RequestIDBObjectStoreCount(
+ const WebKit::WebIDBKeyRange& idb_key_range,
+ WebKit::WebIDBCallbacks* callbacks,
+ int32 idb_object_store_id,
+ const WebKit::WebIDBTransaction& transaction,
+ WebKit::WebExceptionCode* ec);
+
void RegisterWebIDBTransactionCallbacks(
WebKit::WebIDBTransactionCallbacks* callbacks,
int32 id);

Powered by Google App Engine
This is Rietveld 408576698