| Index: third_party/WebKit/Source/modules/indexeddb/IDBKeyRange.idl
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBKeyRange.idl b/third_party/WebKit/Source/modules/indexeddb/IDBKeyRange.idl
|
| index 0fbc7e142ba2be1b3be536081da23e20e65bf2d3..aae8b023c5221a20c0528d5f45234d0e6ea72b17 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBKeyRange.idl
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBKeyRange.idl
|
| @@ -33,10 +33,10 @@
|
| readonly attribute boolean lowerOpen;
|
| readonly attribute boolean upperOpen;
|
|
|
| - [CallWith=ExecutionContext, RaisesException] static IDBKeyRange only(any value);
|
| - [CallWith=ExecutionContext, RaisesException] static IDBKeyRange lowerBound(any bound, optional boolean open = false);
|
| - [CallWith=ExecutionContext, RaisesException] static IDBKeyRange upperBound(any bound, optional boolean open = false);
|
| - [CallWith=ExecutionContext, RaisesException] static IDBKeyRange bound(any lower, any upper, optional boolean lowerOpen = false, optional boolean upperOpen = false);
|
| + [CallWith=ScriptState, RaisesException] static IDBKeyRange only(any value);
|
| + [CallWith=ScriptState, RaisesException] static IDBKeyRange lowerBound(any bound, optional boolean open = false);
|
| + [CallWith=ScriptState, RaisesException] static IDBKeyRange upperBound(any bound, optional boolean open = false);
|
| + [CallWith=ScriptState, RaisesException] static IDBKeyRange bound(any lower, any upper, optional boolean lowerOpen = false, optional boolean upperOpen = false);
|
|
|
| - [CallWith=ExecutionContext, RaisesException] boolean includes(any key);
|
| + [CallWith=ScriptState, RaisesException] boolean includes(any key);
|
| };
|
|
|