| 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&);
|
|
|