// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "media/midi/message_util.h" #include "base/metrics/histogram_macros.h" #include "base/notreached.h" namespace midi { size_t GetMessageLength(uint8_t status_byte) { … } bool IsDataByte(uint8_t data) { … } bool IsSystemRealTimeMessage(uint8_t data) { … } bool IsSystemMessage(uint8_t data) { … } bool IsValidWebMIDIData(const std::vector<uint8_t>& data) { … } } // namespace midi