Index: media/audio/openbsd/audio_manager_openbsd.h |
diff --git a/media/audio/openbsd/audio_manager_openbsd.h b/media/audio/openbsd/audio_manager_openbsd.h |
index aeba43ecc53fd4846355cdb402437179ab3a0c57..14c56368eefee556065ab28e91c7a4a0b2304984 100644 |
--- a/media/audio/openbsd/audio_manager_openbsd.h |
+++ b/media/audio/openbsd/audio_manager_openbsd.h |
@@ -19,6 +19,8 @@ class MEDIA_EXPORT AudioManagerOpenBSD : public AudioManagerBase { |
// Implementation of AudioManager. |
virtual bool HasAudioOutputDevices() OVERRIDE; |
virtual bool HasAudioInputDevices() OVERRIDE; |
+ virtual AudioParameters GetInputStreamParameters( |
+ const std::string& device_id) OVERRIDE; |
// Implementation of AudioManagerBase. |
virtual AudioOutputStream* MakeLinearOutputStream( |
@@ -33,6 +35,9 @@ class MEDIA_EXPORT AudioManagerOpenBSD : public AudioManagerBase { |
protected: |
virtual ~AudioManagerOpenBSD(); |
+ virtual AudioParameters GetPreferredOutputStreamParameters( |
+ const AudioParameters& input_params) OVERRIDE; |
+ |
private: |
// Called by MakeLinearOutputStream and MakeLowLatencyOutputStream. |
AudioOutputStream* MakeOutputStream(const AudioParameters& params); |