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

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

Issue 2125213002: [IndexedDB] Propogating changes to observers : Renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lifetime
Patch Set: IDBDatabase weakptr introduced on IDBObserver 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/IDBObserverChanges.idl
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl b/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl
index 17f7a068c06c81660261b410c48c6df7b2bf17bc..b5d7f40ff15ad941317ffe2eff04e0189dc14aa5 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl
@@ -13,8 +13,8 @@
readonly attribute IDBTransaction transaction;
// This is the javascript Map<String, sequence<IDBObserverChangesRecord>>,
// where the key is the object store name.
- // TODO(palakj) : Replace 'any' with maplike<DOMString, sequence<IDBObserverChangesRecord>>.
- [CallWith=ScriptState] readonly attribute any records;
+ // TODO(palakj) : Replace sequence<IDBObservation> with maplike<DOMString, sequence<IDBObserverChangesRecord>>.
+ [CallWith=ScriptState] readonly attribute sequence<IDBObservation> records;
Marijn Kruisselbrink 2016/07/11 23:10:40 (maybe not relevant if you're somehow changing thi
palakj1 2016/07/13 00:43:51 Changed this to 'any'.
};

Powered by Google App Engine
This is Rietveld 408576698