Chromium Code Reviews

Side by Side Diff: Source/modules/webmidi/MIDIOutputMap.idl

Issue 513203002: Introduce MIDIInputMap and MIDIOutputMap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@iterator-adhoc
Patch Set: Remove custom bindings. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // callback ForEachCallback = void(DOMString id, MIDIOutput port);
6
7 [
8 Iterable,
9 NoInterfaceObject,
10 GarbageCollected,
11 ] interface MIDIOutputMap {
12 readonly attribute unsigned long size;
13 Iterator keys();
14 Iterator entries();
15 Iterator values();
16 // This function returns undefined if |!this->has(id)|.
17 [ImplementedAs=getPublic, CallWith=ScriptState] any get(DOMString id);
haraken 2014/08/29 06:19:42 getPublic => getForBinding
yhirano 2014/08/29 07:29:13 Done.
18 boolean has(DOMString key);
19 // void forEach (ForEachCallback callback);
20 };
OLDNEW

Powered by Google App Engine