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

Unified Diff: content/child/indexed_db/webidbdatabase_impl.h

Issue 1074493002: IndexedDB: Added IDBObjectStore.getAll() implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months 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/child/indexed_db/webidbdatabase_impl.h
diff --git a/content/child/indexed_db/webidbdatabase_impl.h b/content/child/indexed_db/webidbdatabase_impl.h
index 61f20018636fe12c0f685594b86d104dd446df71..83dbe82223dbf34910919e5c9ae6d071a4bd8423 100644
--- a/content/child/indexed_db/webidbdatabase_impl.h
+++ b/content/child/indexed_db/webidbdatabase_impl.h
@@ -50,6 +50,11 @@ class WebIDBDatabaseImpl : public blink::WebIDBDatabase {
const blink::WebIDBKeyRange&,
bool keyOnly,
blink::WebIDBCallbacks*);
+ void getAll(long long transactionId,
+ long long objectStoreId,
+ const blink::WebIDBKeyRange&,
+ long long maxCount,
+ blink::WebIDBCallbacks*) override;
virtual void put(long long transactionId,
long long objectStoreId,
const blink::WebData& value,

Powered by Google App Engine
This is Rietveld 408576698