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

Side by Side Diff: third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl

Issue 2031113002: IndexedDB Observers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: idl changes 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 unified diff | Download patch
OLDNEW
(Empty)
1 [
Marijn Kruisselbrink 2016/06/02 23:51:24 Add a copyright header to this file.
2 RuntimeEnabled=IDBObserver
3 ] dictionary IDBObserverChanges {
4 IDBDatabase db;
5 // Transaction contains the same object stores as the transaction on which I DBTransaction.observe was called.
6 IDBTransaction transaction;
7 // This is the javascript Map<String, sequence<IDBObserverChangesRecord>>,
8 // where the key is the object store name.
9 any records;
10 };
11
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698