Index: content/browser/indexed_db/indexed_db_database.h |
diff --git a/content/browser/indexed_db/indexed_db_database.h b/content/browser/indexed_db/indexed_db_database.h |
index a0390ce9d3a6d59ad9006c228bec97500b88dc21..ee941dbb8c9b07f0cee5b3383b4225596474a326 100644 |
--- a/content/browser/indexed_db/indexed_db_database.h |
+++ b/content/browser/indexed_db/indexed_db_database.h |
@@ -122,6 +122,11 @@ class CONTENT_EXPORT IndexedDBDatabase |
scoped_ptr<IndexedDBKeyRange> key_range, |
bool key_only, |
scoped_refptr<IndexedDBCallbacks> callbacks); |
+ void GetAll(int64 transaction_id, |
+ int64 object_store_id, |
+ scoped_ptr<IndexedDBKeyRange> key_range, |
+ int64 max_count, |
+ scoped_refptr<IndexedDBCallbacks> callbacks); |
void Put(int64 transaction_id, |
int64 object_store_id, |
IndexedDBValue* value, |
@@ -200,6 +205,11 @@ class CONTENT_EXPORT IndexedDBDatabase |
indexed_db::CursorType cursor_type, |
scoped_refptr<IndexedDBCallbacks> callbacks, |
IndexedDBTransaction* transaction); |
+ void GetAllOperation(int64 object_store_id, |
+ scoped_ptr<IndexedDBKeyRange> key_range, |
+ int64 max_count, |
+ scoped_refptr<IndexedDBCallbacks> callbacks, |
+ IndexedDBTransaction* transaction); |
struct PutOperationParams; |
void PutOperation(scoped_ptr<PutOperationParams> params, |
IndexedDBTransaction* transaction); |