#ifndef CHROMEOS_DBUS_AUDIO_NODE_H_
#define CHROMEOS_DBUS_AUDIO_NODE_H_
#include <string>
#include <vector>
#include "base/basictypes.h"
#include "chromeos/chromeos_export.h"
namespace chromeos {
struct CHROMEOS_EXPORT AudioNode {
bool is_input;
uint64 id;
std::string device_name;
std::string type;
std::string name;
bool active;
uint64 plugged_time;
AudioNode();
AudioNode(bool is_input,
uint64 id,
std::string device_name,
std::string type,
std::string name,
bool active,
uint64 plugged_time);
std::string ToString() const;
};
typedef std::vector<AudioNode> AudioNodeList;
}
#endif