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

Unified Diff: Source/modules/webmidi/MIDIInputMap.cpp

Issue 513203002: Introduce MIDIInputMap and MIDIOutputMap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@iterator-adhoc
Patch Set: Created 6 years, 4 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: Source/modules/webmidi/MIDIInputMap.cpp
diff --git a/Source/modules/webmidi/MIDIInputMap.cpp b/Source/modules/webmidi/MIDIInputMap.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..015ff0035983677569d73bfcaa00e42f6a0f71c4
--- /dev/null
+++ b/Source/modules/webmidi/MIDIInputMap.cpp
@@ -0,0 +1,22 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "config.h"
+#include "modules/webmidi/MIDIInputMap.h"
+
+#include "bindings/core/v8/ScriptState.h"
+#include "bindings/modules/v8/V8MIDIInput.h"
+
+namespace blink {
+
+ScriptValue MIDIInputMap::getForBinding(ScriptState* scriptState, const String& id)
+{
+ MIDIInput* result = get(id);
+ if (result)
+ return ScriptValue(scriptState, toV8(result, scriptState->context()->Global(), scriptState->isolate()));
+ return ScriptValue(scriptState, v8::Undefined(scriptState->isolate()));
+}
+
+} // namespace blink
+

Powered by Google App Engine
This is Rietveld 408576698