| 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 bcde7190c503bc495e4206f3252a51225424892c..2a02b6f7a42529cda2023810b4f1d1b78393fc6f 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);
|
|
|