diff options
Diffstat (limited to 'content/renderer/media/webrtc_audio_device_impl.h')
-rw-r--r-- | content/renderer/media/webrtc_audio_device_impl.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/content/renderer/media/webrtc_audio_device_impl.h b/content/renderer/media/webrtc_audio_device_impl.h index ef3cb7c..b644178 100644 --- a/content/renderer/media/webrtc_audio_device_impl.h +++ b/content/renderer/media/webrtc_audio_device_impl.h @@ -223,7 +223,8 @@ class WebRtcAudioCapturerSink { int number_of_frames, int audio_delay_milliseconds, int current_volume, - bool need_audio_processing) = 0; + bool need_audio_processing, + bool key_pressed) = 0; // Set the format for the capture audio parameters. virtual void SetCaptureFormat(const media::AudioParameters& params) = 0; @@ -339,7 +340,8 @@ class CONTENT_EXPORT WebRtcAudioDeviceImpl int number_of_frames, int audio_delay_milliseconds, int current_volume, - bool need_audio_processing) OVERRIDE; + bool need_audio_processing, + bool key_pressed) OVERRIDE; // Called on the main render thread. virtual void SetCaptureFormat(const media::AudioParameters& params) OVERRIDE; |