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

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

Issue 2459113002: [IDBObservers] Moving options from constructor to .observe call. (Closed)
Patch Set: change bitset to pass by value Created 4 years, 1 month 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 acb4e444d9defd3efabd2a4212ed4bf1f9cf230e..fae8b65617c82b312f9518e9762254c65b363048 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBObserver.idl
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBObserver.idl
@@ -8,9 +8,9 @@ callback IDBObserverCallback = void (IDBObserverChanges changes);
[
Exposed=(Window,Worker),
- CustomConstructor(IDBObserverCallback callback, IDBObserverInit options),
+ CustomConstructor(IDBObserverCallback callback),
RuntimeEnabled=IDBObserver
] interface IDBObserver {
- [RaisesException] void observe(IDBDatabase db, IDBTransaction tx);
+ [RaisesException] void observe(IDBDatabase db, IDBTransaction tx, IDBObserverInit options);
[RaisesException] void unobserve(IDBDatabase db);
};

Powered by Google App Engine
This is Rietveld 408576698