Chromium Code Reviews| Index: webrtc/audio/audio_state.h |
| diff --git a/webrtc/audio/audio_state.h b/webrtc/audio/audio_state.h |
| index 29b5a9edbf2591267777f796d51439159318b0bb..f3f2828c7f20aa5c3ead36309f660326bf3f0089 100644 |
| --- a/webrtc/audio/audio_state.h |
| +++ b/webrtc/audio/audio_state.h |
| @@ -28,8 +28,14 @@ class AudioState final : public webrtc::AudioState, |
| explicit AudioState(const AudioState::Config& config); |
| ~AudioState() override; |
| - VoiceEngine* voice_engine(); |
| + // TODO(peah): Remove the conditional in the audio_transport_proxy_ |
| + // constructor call when upstream dependencies have properly been resolved. |
|
the sun
2017/06/29 10:41:52
comment is not right, mentioning transport proxy c
peah-webrtc
2017/06/29 11:46:31
Done.
|
| + AudioProcessing* audio_processing() override { |
| + return config_.audio_processing ? config_.audio_processing.get() |
| + : voe_base_->audio_processing(); |
| + } |
| + VoiceEngine* voice_engine(); |
| rtc::scoped_refptr<AudioMixer> mixer(); |
| bool typing_noise_detected() const; |