Index: third_party/WebKit/Source/modules/indexeddb/IDBFactory.idl |
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBFactory.idl b/third_party/WebKit/Source/modules/indexeddb/IDBFactory.idl |
index b9aa72a15cdbc7a645072e979b5dce6b11e0ffbc..d028263e04d24d9e4cfa7464eebf38335c5494f7 100644 |
--- a/third_party/WebKit/Source/modules/indexeddb/IDBFactory.idl |
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBFactory.idl |
@@ -30,8 +30,8 @@ |
] interface IDBFactory { |
[CallWith=ScriptState, ImplementedAs=getDatabaseNames, RaisesException, Measure] IDBRequest webkitGetDatabaseNames(); |
- [CallWith=ScriptState, RaisesException] IDBOpenDBRequest open(DOMString name, [EnforceRange] optional unsigned long long version); |
- [CallWith=ScriptState, RaisesException] IDBOpenDBRequest deleteDatabase(DOMString name); |
+ [MeasureAs=IndexedDB, CallWith=ScriptState, RaisesException] IDBOpenDBRequest open(DOMString name, [EnforceRange] optional unsigned long long version); |
+ [MeasureAs=IndexedDB, CallWith=ScriptState, RaisesException] IDBOpenDBRequest deleteDatabase(DOMString name); |
- [CallWith=ScriptState, RaisesException] short cmp(any first, any second); |
+ [MeasureAs=IndexedDB, CallWith=ScriptState, RaisesException] short cmp(any first, any second); |
}; |