Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(631)

Unified Diff: media/audio/audio_device_description.cc

Issue 2563653002: Replace AudioManager::GetAudio*DeviceNames with AudioManager::GetAudio*DeviceDescriptions (Closed)
Patch Set: nit fixes Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/audio/audio_device_description.h ('k') | media/audio/audio_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/audio_device_description.cc
diff --git a/media/audio/audio_device_description.cc b/media/audio/audio_device_description.cc
index 90421193d6c4f9be4fe3615ce9a8551f156e25d7..f1e0e89c59b43e9896767cf0edcf361862be95b8 100644
--- a/media/audio/audio_device_description.cc
+++ b/media/audio/audio_device_description.cc
@@ -46,4 +46,9 @@ std::string AudioDeviceDescription::GetCommunicationsDeviceName() {
#endif
}
+AudioDeviceDescription::AudioDeviceDescription(const std::string& device_name,
+ const std::string& unique_id,
+ const std::string& group_id)
+ : device_name(device_name), unique_id(unique_id), group_id(group_id) {}
+
} // namespace media
« no previous file with comments | « media/audio/audio_device_description.h ('k') | media/audio/audio_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698