| 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..aa3cca0da8b5e41a171cca2e363f23f8c7e8f31a 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);
|
| +
|
| + std::string device_name; // Friendly name of the device.
|
| std::string unique_id; // Unique identifier for the device.
|
| };
|
|
|
|
|