Chromium Code Reviews| Index: media/audio/audio_device_name.h |
| diff --git a/media/audio/audio_device_name.h b/media/audio/audio_device_name.h |
| index ef3cd77db7cab93e7babd81c93e8b4810c236ab4..001d7002446056670dc6acd92e5cecc3d5ab8f8b 100644 |
| --- a/media/audio/audio_device_name.h |
| +++ b/media/audio/audio_device_name.h |
| @@ -7,11 +7,16 @@ |
| #include <list> |
| #include <string> |
| +#include "media/base/media_export.h" |
| namespace media { |
| -struct AudioDeviceName { |
| - std::string device_name; // Name and also display name of the device. |
| +struct MEDIA_EXPORT AudioDeviceName { |
| + AudioDeviceName(); |
| + AudioDeviceName(const std::string& device_name, |
| + const std::string& unique_id); |
|
tommi (sloooow) - chröme
2011/10/24 07:05:01
single spacing
no longer working on chromium
2011/10/25 20:35:53
Done.
|
| + |
| + std::string device_name; // Friendly name of the device. |
| std::string unique_id; // Unique identifier for the device. |
| }; |