Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(947)

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBKeyRange.idl

Issue 2526943002: Add use counters for lots of DOM APIs.
Patch Set: Add use counters for lots of DOM APIs. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
};

Powered by Google App Engine
This is Rietveld 408576698