Chromium Code Reviews| 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..fac24ce009e2fbce845421168d932458fe4720d3 100644 |
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl |
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl |
| @@ -11,9 +11,8 @@ |
| readonly attribute IDBDatabase database; |
| // Transaction contains the same object stores as the transaction on which IDBTransaction.observe was called. |
| readonly attribute IDBTransaction transaction; |
| - // This is the javascript Map<String, sequence<IDBObserverChangesRecord>>, |
| + // This is the equivalent to javascript { String : sequence<IDBObservation> } dictionary, |
|
Marijn Kruisselbrink
2016/07/13 17:58:45
I think it's fine to make this change for now and
palakj1
2016/07/13 22:48:38
Changed to map
|
| // where the key is the object store name. |
| - // TODO(palakj) : Replace 'any' with maplike<DOMString, sequence<IDBObserverChangesRecord>>. |
| [CallWith=ScriptState] readonly attribute any records; |
| }; |