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

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

Issue 2062203004: IDBObserver: Lifetime Management: Adding Observer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Observer moved to connection Created 4 years, 6 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 ab4d856fe270ac7932b1d268d6c1b38f3136c01a..42a8bc940872eab486de75a58d4817d7d4e6bff9 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBObserver.idl
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBObserver.idl
@@ -8,7 +8,8 @@ callback IDBObserverCallback = void (IDBObserverChanges changes);
[
Exposed=(Window,Worker),
CustomConstructor(IDBObserverCallback callback, IDBObserverInit options),
- RuntimeEnabled=IDBObserver
+ RuntimeEnabled=IDBObserver,
] interface IDBObserver {
[RaisesException] void observe(IDBDatabase db, IDBTransaction tx);
+ [RaisesException] void unobserve(IDBDatabase db);
};

Powered by Google App Engine
This is Rietveld 408576698