Chromium Code Reviews| Index: content/browser/renderer_host/media/audio_output_device_enumerator.h |
| diff --git a/content/browser/renderer_host/media/audio_output_device_enumerator.h b/content/browser/renderer_host/media/audio_output_device_enumerator.h |
| index 259adb543bd8bbc11755185a17fa0ae5d05ae8aa..3d19d2a36024dae1d09e9de48c9882fdf52f077f 100644 |
| --- a/content/browser/renderer_host/media/audio_output_device_enumerator.h |
| +++ b/content/browser/renderer_host/media/audio_output_device_enumerator.h |
| @@ -39,8 +39,19 @@ namespace content { |
| // The enumerations returned by AudioOutputDeviceEnumerator::Enumerate() contain |
| // elements of this type. It is used only in the browser side. |
| struct AudioOutputDeviceInfo { |
| + AudioOutputDeviceInfo(); |
| + AudioOutputDeviceInfo(const AudioOutputDeviceInfo& audio_output_device_info); |
| + AudioOutputDeviceInfo(AudioOutputDeviceInfo&& audio_output_device_info); |
| + AudioOutputDeviceInfo& operator=( |
| + const AudioOutputDeviceInfo& audio_output_device_info); |
| + AudioOutputDeviceInfo(std::string unique_id, |
|
tommi (sloooow) - chröme
2016/09/05 13:09:23
are these all by-value on purpose?
Max Morin
2016/09/05 13:53:56
Fixed
|
| + std::string device_name, |
| + std::string group_id, |
| + media::AudioParameters output_params); |
| + ~AudioOutputDeviceInfo(); |
| std::string unique_id; |
| std::string device_name; |
| + std::string group_id; |
| media::AudioParameters output_params; |
| }; |