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

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

Issue 513203002: Introduce MIDIInputMap and MIDIOutputMap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@iterator-adhoc
Patch Set: rebase Created 6 years, 3 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
« no previous file with comments | « Source/modules/webmidi/MIDIInput.h ('k') | Source/modules/webmidi/MIDIInputMap.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webmidi/MIDIInputMap.h
diff --git a/Source/modules/webmidi/MIDIInputMap.h b/Source/modules/webmidi/MIDIInputMap.h
new file mode 100644
index 0000000000000000000000000000000000000000..8fb89f5323d07cd9bf52c89986886f40ba599e2e
--- /dev/null
+++ b/Source/modules/webmidi/MIDIInputMap.h
@@ -0,0 +1,26 @@
+// 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.
+
+#ifndef MIDIInputMap_h
+#define MIDIInputMap_h
+
+#include "bindings/core/v8/ScriptWrappable.h"
+#include "modules/webmidi/MIDIInput.h"
+#include "modules/webmidi/MIDIPortMap.h"
+
+namespace blink {
+
+class ScriptState;
+
+class MIDIInputMap : public MIDIPortMap<MIDIInput>, public ScriptWrappable {
+ DEFINE_WRAPPERTYPEINFO();
+public:
+ explicit MIDIInputMap(const HeapHashMap<String, Member<MIDIInput> >);
+
+ ScriptValue getForBinding(ScriptState*, const String& id);
+};
+
+} // namespace blink
+
+#endif
« no previous file with comments | « Source/modules/webmidi/MIDIInput.h ('k') | Source/modules/webmidi/MIDIInputMap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698