Index: media/audio/audio_manager.h |
diff --git a/media/audio/audio_manager.h b/media/audio/audio_manager.h |
index 37399739f9323385b4e7653644afa7c0a180be14..768364a7437388caf1b7bd90b18dc36e814acdc2 100644 |
--- a/media/audio/audio_manager.h |
+++ b/media/audio/audio_manager.h |
@@ -114,6 +114,13 @@ class MEDIA_EXPORT AudioManager { |
// Audio worker thread (see GetWorkerTaskRunner()). |
virtual void GetAudioOutputDeviceNames(AudioDeviceNames* device_names) = 0; |
+ // Returns the localized name of the generic "default" device. |
+ virtual std::string GetDefaultDeviceName() const = 0; |
+ |
+ // Returns the localized name of the generic default communications device. |
+ // This device is not supported on all platforms. |
+ virtual std::string GetCommunicationsDeviceName() const = 0; |
+ |
// Factory for all the supported stream formats. |params| defines parameters |
// of the audio stream to be created. |
// |