| 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..a917365240ac27e01170717b384f401dd4c8c869 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBKeyRange.idl
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBKeyRange.idl
|
| @@ -28,15 +28,15 @@
|
| [
|
| Exposed=(Window,Worker),
|
| ] interface IDBKeyRange {
|
| - [ImplementedAs=lowerValue, CallWith=ScriptState] readonly attribute any lower;
|
| - [ImplementedAs=upperValue, CallWith=ScriptState] readonly attribute any upper;
|
| - readonly attribute boolean lowerOpen;
|
| - readonly attribute boolean upperOpen;
|
| + [MeasureAs=IndexedDB, ImplementedAs=lowerValue, CallWith=ScriptState] readonly attribute any lower;
|
| + [MeasureAs=IndexedDB, ImplementedAs=upperValue, CallWith=ScriptState] readonly attribute any upper;
|
| + [MeasureAs=IndexedDB] readonly attribute boolean lowerOpen;
|
| + [MeasureAs=IndexedDB] 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);
|
| + [MeasureAs=IndexedDB, CallWith=ExecutionContext, RaisesException] static IDBKeyRange only(any value);
|
| + [MeasureAs=IndexedDB, CallWith=ExecutionContext, RaisesException] static IDBKeyRange lowerBound(any bound, optional boolean open = false);
|
| + [MeasureAs=IndexedDB, CallWith=ExecutionContext, RaisesException] static IDBKeyRange upperBound(any bound, optional boolean open = false);
|
| + [MeasureAs=IndexedDB, CallWith=ExecutionContext, RaisesException] static IDBKeyRange bound(any lower, any upper, optional boolean lowerOpen = false, optional boolean upperOpen = false);
|
|
|
| - [CallWith=ExecutionContext, RaisesException] boolean includes(any key);
|
| + [MeasureAs=IndexedDB, CallWith=ExecutionContext, RaisesException] boolean includes(any key);
|
| };
|
|
|