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

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: Added unused indexId/keyOnly parameters to getAll. Created 5 years, 7 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 1e6350dd3a6142b4749beae9bb3fa81372311691..0d9d7abeb880c7bd939a17032d380bc82a857e03 100644
--- a/content/child/indexed_db/webidbdatabase_impl.h
+++ b/content/child/indexed_db/webidbdatabase_impl.h
@@ -50,6 +50,13 @@ class WebIDBDatabaseImpl : public blink::WebIDBDatabase {
const blink::WebIDBKeyRange&,
bool keyOnly,
blink::WebIDBCallbacks*);
+ virtual void getAll(long long transactionId,
+ long long objectStoreId,
+ long long indexId,
+ const blink::WebIDBKeyRange&,
+ long long maxCount,
+ bool keyOnly,
+ blink::WebIDBCallbacks*);
virtual void put(long long transactionId,
long long objectStoreId,
const blink::WebData& value,
« no previous file with comments | « content/child/indexed_db/indexed_db_dispatcher_unittest.cc ('k') | content/child/indexed_db/webidbdatabase_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698