blob: 1627a3767419ccb1713d318928db8b013d429459 [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.
#include "third_party/blink/renderer/modules/webmidi/midi_message_event.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_midi_message_event_init.h"
namespace blink {
MIDIMessageEvent::MIDIMessageEvent(const AtomicString& type,
const MIDIMessageEventInit* initializer)
: Event(type, initializer) {
if (initializer->hasData())
data_ = initializer->data().Get();
}
} // namespace blink