Index: media/audio/audio_manager.h |
diff --git a/media/audio/audio_manager.h b/media/audio/audio_manager.h |
index 4c4cc8f59b4c77f66c8083ba30ceb6a2ec5e90b7..dbc83e1c25dd2d2c0abed7b5e20dd163d7482afe 100644 |
--- a/media/audio/audio_manager.h |
+++ b/media/audio/audio_manager.h |
@@ -241,6 +241,12 @@ class MEDIA_EXPORT AudioManager { |
virtual std::string GetAssociatedOutputDeviceID( |
const std::string& input_device_id) = 0; |
+ // These functions assign group ids to devices based on their device ids. |
+ // The default implementation is an attempt to do this based on |
+ // GetAssociatedOutputDeviceID. |
+ virtual std::string GetGroupIDOutput(std::string output_device_id) = 0; |
tommi (sloooow) - chröme
2016/08/29 16:19:53
const std::string& output_device_id
Max Morin
2016/08/30 08:17:45
Done.
|
+ virtual std::string GetGroupIDInput(std::string input_device_id) = 0; |
tommi (sloooow) - chröme
2016/08/29 16:19:53
ditto
Max Morin
2016/08/30 08:17:45
Done.
|
+ |
// Create a new AudioLog object for tracking the behavior for one or more |
// instances of the given component. See AudioLogFactory for more details. |
virtual std::unique_ptr<AudioLog> CreateAudioLog( |