| Index: third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.idl
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.idl b/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.idl
|
| index eb57f91985708b9b8d07b4ee8201989e6ae7b998..abafe0616048439202511e53a6bae0adb82ed8da 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.idl
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.idl
|
| @@ -41,9 +41,9 @@
|
| [CallWith=ScriptState, RaisesException] IDBRequest get(any key);
|
| [CallWith=ScriptState, RaisesException, RuntimeEnabled=IndexedDBExperimental] IDBRequest getKey(any key);
|
| // TODO(cmumford): 0xFFFFFFFF is not necessary. Remove once crbug.com/335871 is fixed.
|
| - [CallWith=ScriptState, RaisesException] IDBRequest getAll([Default=Undefined] optional any range, optional unsigned long maxCount = 0xFFFFFFFF);
|
| + [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.
|
| - [CallWith=ScriptState, RaisesException] IDBRequest getAllKeys([Default=Undefined] optional any range, optional unsigned long maxCount = 0xFFFFFFFF);
|
| + [CallWith=ScriptState, RaisesException] IDBRequest getAllKeys([Default=Undefined] optional any range, [EnforceRange] optional unsigned long maxCount = 0xFFFFFFFF);
|
| [CallWith=ScriptState, RaisesException] IDBRequest count([Default=Undefined] optional any key);
|
| [CallWith=ScriptState, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, optional IDBCursorDirection direction = "next");
|
| [CallWith=ScriptState, RaisesException] IDBRequest openKeyCursor([Default=Undefined] optional any range, optional IDBCursorDirection direction = "next");
|
|
|