| Index: Source/modules/indexeddb/IDBIndex.h
|
| diff --git a/Source/modules/indexeddb/IDBIndex.h b/Source/modules/indexeddb/IDBIndex.h
|
| index 597e34263fe7790be7152507aad20e8f32477cd5..9fe8d6ab9781374a337a8976da8aa428c847b81d 100644
|
| --- a/Source/modules/indexeddb/IDBIndex.h
|
| +++ b/Source/modules/indexeddb/IDBIndex.h
|
| @@ -59,16 +59,16 @@ public:
|
| bool multiEntry() const { return m_metadata.multiEntry; }
|
| int64_t id() const { return m_metadata.id; }
|
|
|
| - PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, const String& direction, ExceptionCode&);
|
| - PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext*, const ScriptValue& key, const String& direction, ExceptionCode&);
|
| - PassRefPtr<IDBRequest> count(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, ExceptionCode&);
|
| - PassRefPtr<IDBRequest> count(ScriptExecutionContext*, const ScriptValue& key, ExceptionCode&);
|
| - PassRefPtr<IDBRequest> openKeyCursor(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, const String& direction, ExceptionCode&);
|
| - PassRefPtr<IDBRequest> openKeyCursor(ScriptExecutionContext*, const ScriptValue& key, const String& direction, ExceptionCode&);
|
| - PassRefPtr<IDBRequest> get(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, ExceptionCode&);
|
| - PassRefPtr<IDBRequest> get(ScriptExecutionContext*, const ScriptValue& key, ExceptionCode&);
|
| - PassRefPtr<IDBRequest> getKey(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, ExceptionCode&);
|
| - PassRefPtr<IDBRequest> getKey(ScriptExecutionContext*, const ScriptValue& key, ExceptionCode&);
|
| + IDBRequest* openCursor(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, const String& direction, ExceptionCode&);
|
| + IDBRequest* openCursor(ScriptExecutionContext*, const ScriptValue& key, const String& direction, ExceptionCode&);
|
| + IDBRequest* count(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, ExceptionCode&);
|
| + IDBRequest* count(ScriptExecutionContext*, const ScriptValue& key, ExceptionCode&);
|
| + IDBRequest* openKeyCursor(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, const String& direction, ExceptionCode&);
|
| + IDBRequest* openKeyCursor(ScriptExecutionContext*, const ScriptValue& key, const String& direction, ExceptionCode&);
|
| + IDBRequest* get(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, ExceptionCode&);
|
| + IDBRequest* get(ScriptExecutionContext*, const ScriptValue& key, ExceptionCode&);
|
| + IDBRequest* getKey(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, ExceptionCode&);
|
| + IDBRequest* getKey(ScriptExecutionContext*, const ScriptValue& key, ExceptionCode&);
|
|
|
| void markDeleted() { m_deleted = true; }
|
| bool isDeleted() const;
|
|
|