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

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

Issue 2160163002: [IndexedDB] Propogating Changes to Observer : Browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Expected tests updated Created 4 years, 5 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/IDBObservation.idl
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBObserverChangesRecord.idl b/third_party/WebKit/Source/modules/indexeddb/IDBObservation.idl
similarity index 80%
rename from third_party/WebKit/Source/modules/indexeddb/IDBObserverChangesRecord.idl
rename to third_party/WebKit/Source/modules/indexeddb/IDBObservation.idl
index 6c8d922d2cbe4ce9141943f701caf8d6a52a974a..c25bbf57d3d18aa5c09d9757745fbe7d38f457b3 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBObserverChangesRecord.idl
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBObservation.idl
@@ -4,7 +4,7 @@
// https://github.com/WICG/indexed-db-observers/blob/gh-pages/EXPLAINER.md#records
-enum IDBObserverChangesRecordType {
+enum IDBObservationType {
"add",
"put",
"delete",
@@ -14,8 +14,8 @@ enum IDBObserverChangesRecordType {
Exposed=(Window,Worker),
RuntimeEnabled=IDBObserver
]
- interface IDBObserverChangesRecord {
- readonly attribute IDBObserverChangesRecordType type;
+ interface IDBObservation {
+ readonly attribute IDBObservationType type;
// When the record is a "delete" type, this is an IDBKeyRange.
[CallWith=ScriptState] readonly attribute any key;
[CallWith=ScriptState] readonly attribute any value;

Powered by Google App Engine
This is Rietveld 408576698