OLD | NEW |
(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 #ifndef MIDIInputMap_h |
| 6 #define MIDIInputMap_h |
| 7 |
| 8 #include "bindings/core/v8/ScriptWrappable.h" |
| 9 #include "bindings/core/v8/V8Binding.h" |
| 10 #include "modules/webmidi/MIDIInput.h" |
| 11 #include "modules/webmidi/MIDIPortMap.h" |
| 12 |
| 13 namespace blink { |
| 14 |
| 15 class MIDIInputMap : public MIDIPortMap<MIDIInput>, public ScriptWrappable { |
| 16 public: |
| 17 MIDIInputMap(const HeapHashMap<String, Member<MIDIInput> >map) |
| 18 : MIDIPortMap<MIDIInput>(map) { ScriptWrappable::init(this); } |
| 19 |
| 20 ScriptValue getPublic(ScriptState* scriptState, const String& id) |
| 21 { |
| 22 MIDIInput* result = get(id); |
| 23 if (result) |
| 24 return ScriptValue(scriptState, V8ValueTraits<MIDIInput*>::toV8Value
(result, scriptState->context()->Global(), scriptState->isolate())); |
| 25 return ScriptValue(scriptState, v8::Undefined(scriptState->isolate())); |
| 26 } |
| 27 }; |
| 28 |
| 29 } // namespace blink |
| 30 |
| 31 #endif |
OLD | NEW |