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

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

Issue 2706293015: [IndexedDB] Added Observer UseCounter (Closed)
Patch Set: comment Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..11796486990f04ebf58b6609f4dc20f72050c612 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, Measure] void observe(IDBDatabase db, IDBTransaction tx, IDBObserverInit options);
+ [RaisesException, Measure] void unobserve(IDBDatabase db);
};
« no previous file with comments | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698