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

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

Issue 2706293015: [IndexedDB] Added Observer UseCounter (Closed)
Patch Set: Created 3 years, 10 months 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/IDBObserver.idl
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBObserver.idl b/third_party/WebKit/Source/modules/indexeddb/IDBObserver.idl
index fae8b65617c82b312f9518e9762254c65b363048..c523b4aab433c569315e1f987b33b73366fb94db 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBObserver.idl
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBObserver.idl
@@ -11,6 +11,6 @@ callback IDBObserverCallback = void (IDBObserverChanges changes);
CustomConstructor(IDBObserverCallback callback),
RuntimeEnabled=IDBObserver
] interface IDBObserver {
- [RaisesException] void observe(IDBDatabase db, IDBTransaction tx, IDBObserverInit options);
- [RaisesException] void unobserve(IDBDatabase db);
+ [RaisesException, MeasureAs=IDBObserver_Observe] void observe(IDBDatabase db, IDBTransaction tx, IDBObserverInit options);
+ [RaisesException, MeasureAs=IDBObserver_Unobserve] void unobserve(IDBDatabase db);
};

Powered by Google App Engine
This is Rietveld 408576698