blob: d31ae4ad6d7d8a8b07e8521d490faf749aa77cbb [file] [log] [blame]
// 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 MIDIOutputMap_h
#define MIDIOutputMap_h
#include "bindings/core/v8/ScriptWrappable.h"
#include "modules/webmidi/MIDIOutput.h"
#include "modules/webmidi/MIDIPortMap.h"
namespace blink {
class ScriptState;
class MIDIOutputMap : public MIDIPortMap<MIDIOutput>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
explicit MIDIOutputMap(HeapVector<Member<MIDIOutput>>&);
};
} // namespace blink
#endif