Index: modules/webmidi/MIDIOutputMap.idl |
diff --git a/modules/webmidi/MIDIOutputMap.idl b/modules/webmidi/MIDIOutputMap.idl |
index eec7a882b7bbb81bb0c62a10977b532777e11de2..546f07429dfdf01275ad92ffcc00fb2f43b045b8 100644 |
--- a/modules/webmidi/MIDIOutputMap.idl |
+++ b/modules/webmidi/MIDIOutputMap.idl |
@@ -6,17 +6,8 @@ |
// callback ForEachCallback = void(DOMString id, MIDIOutput port); |
[ |
- Iterable, |
- NoInterfaceObject, |
GarbageCollected, |
] interface MIDIOutputMap { |
readonly attribute unsigned long size; |
- Iterator keys(); |
- Iterator entries(); |
- Iterator values(); |
- // This function returns undefined if |!this->has(id)|. |
- [ImplementedAs=getForBinding, CallWith=ScriptState] any get(DOMString id); |
- boolean has(DOMString key); |
- // FIXME: Implement forEach. |
- // void forEach (ForEachCallback callback); |
+ readonly maplike<DOMString, MIDIOutput>; |
}; |