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

Unified Diff: Source/modules/indexeddb/IDBObjectStore.h

Issue 1164493003: IndexedDB: Implementation of IDBObjectStore.getAllKeys(). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@idb-index-getallkeys-pt2
Patch Set: 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
« no previous file with comments | « no previous file | Source/modules/indexeddb/IDBObjectStore.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBObjectStore.h
diff --git a/Source/modules/indexeddb/IDBObjectStore.h b/Source/modules/indexeddb/IDBObjectStore.h
index 3a26945585a6cf1389d52a00d1f42d507fbe05e6..ef646d935ebb51d4e9646e7f9f0706239477586b 100644
--- a/Source/modules/indexeddb/IDBObjectStore.h
+++ b/Source/modules/indexeddb/IDBObjectStore.h
@@ -73,6 +73,8 @@ public:
IDBRequest* get(ScriptState*, const ScriptValue& key, ExceptionState&);
IDBRequest* getAll(ScriptState*, const ScriptValue& range, unsigned long maxCount, ExceptionState&);
IDBRequest* getAll(ScriptState*, const ScriptValue& range, ExceptionState&);
+ IDBRequest* getAllKeys(ScriptState*, const ScriptValue& range, unsigned long maxCount, ExceptionState&);
+ IDBRequest* getAllKeys(ScriptState*, const ScriptValue& range, ExceptionState&);
IDBRequest* add(ScriptState*, const ScriptValue&, const ScriptValue& key, ExceptionState&);
IDBRequest* put(ScriptState*, const ScriptValue&, const ScriptValue& key, ExceptionState&);
IDBRequest* deleteFunction(ScriptState*, const ScriptValue& key, ExceptionState&);
« no previous file with comments | « no previous file | Source/modules/indexeddb/IDBObjectStore.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698