Chromium Code Reviews| Index: media/midi/midi_port_info.h |
| diff --git a/media/midi/midi_port_info.h b/media/midi/midi_port_info.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..21a9df2fd8f6ba0769951b0606764b372765c31b |
| --- /dev/null |
| +++ b/media/midi/midi_port_info.h |
| @@ -0,0 +1,37 @@ |
| +// Copyright (c) 2013 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 MEDIA_MIDI_MIDI_PORT_INFO_H_ |
| +#define MEDIA_MIDI_MIDI_PORT_INFO_H_ |
| + |
| +#include <string> |
| +#include <vector> |
| + |
| +#include "base/basictypes.h" |
| +#include "media/base/media_export.h" |
| + |
| +namespace media { |
| + |
| +struct MEDIA_EXPORT MIDIPortInfo { |
| + MIDIPortInfo(const std::string& id, |
| + const std::string& manufacturer, |
| + const std::string& name, |
| + const std::string& version); |
| + |
| + MIDIPortInfo(const MIDIPortInfo& info); |
| + ~MIDIPortInfo(); |
| + |
| + void Print() const; |
| + |
| + std::string id_; |
|
scherkus (not reviewing)
2013/06/13 02:05:41
public struct members can leave off the trailing _
Chris Rogers
2013/06/14 00:47:33
Done.
|
| + std::string manufacturer_; |
| + std::string name_; |
| + std::string version_; |
| +}; |
| + |
| +typedef std::vector<MIDIPortInfo> MIDIPortInfoList; |
| + |
| +} // namespace media |
| + |
| +#endif // MEDIA_MIDI_MIDI_PORT_INFO_H_ |