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

Side by Side Diff: third_party/WebKit/Source/modules/indexeddb/IDBObserverChangesRecord.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 enum IDBObserverChangesRecordType {
Marijn Kruisselbrink 2016/06/02 23:51:24 Add a copyright header to this file.
2 "add", "put", "delete", "clear"
3 };
4
5 [
6 RuntimeEnabled=IDBObserver
7 ] dictionary IDBObserverChangesRecord {
8 IDBObserverChangesRecordType type;
9 // When the record is a "delete" type, this is an IDBKeyRange.
10 any key;
11 any value;
12 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698