| Index: third_party/WebKit/Source/modules/indexeddb/IDBIndex.idl
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBIndex.idl b/third_party/WebKit/Source/modules/indexeddb/IDBIndex.idl
|
| index 5e1bace34785b543fbbb0f8cde6332decdf54c5d..b7b57e3acb2e4f68a003d9b8c2b0d5e46bed4551 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBIndex.idl
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBIndex.idl
|
| @@ -36,12 +36,10 @@
|
|
|
| [NewObject, CallWith=ScriptState, RaisesException] IDBRequest get(any key);
|
| [NewObject, CallWith=ScriptState, RaisesException] IDBRequest getKey(any key);
|
| - // TODO(cmumford): 0xFFFFFFFF is not necessary. Remove once crbug.com/335871 is fixed.
|
| - [NewObject, CallWith=ScriptState, RaisesException] IDBRequest getAll([Default=Undefined] optional any range,
|
| - [EnforceRange] optional unsigned long maxCount = 0xFFFFFFFF);
|
| - // TODO(cmumford): 0xFFFFFFFF is not necessary. Remove once crbug.com/335871 is fixed.
|
| - [NewObject, CallWith=ScriptState, RaisesException] IDBRequest getAllKeys([Default=Undefined] optional any range,
|
| - [EnforceRange] optional unsigned long maxCount = 0xFFFFFFFF);
|
| + [NewObject, CallWith=ScriptState, RaisesException] IDBRequest getAll([Default=Undefined] optional any query,
|
| + [EnforceRange] optional unsigned long count);
|
| + [NewObject, CallWith=ScriptState, RaisesException] IDBRequest getAllKeys([Default=Undefined] optional any query,
|
| + [EnforceRange] optional unsigned long count);
|
| [NewObject, CallWith=ScriptState, RaisesException] IDBRequest count([Default=Undefined] optional any key);
|
|
|
| [NewObject, CallWith=ScriptState, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range,
|
|
|