| Index: webrtc/audio/audio_send_stream.h
 | 
| diff --git a/webrtc/audio/audio_send_stream.h b/webrtc/audio/audio_send_stream.h
 | 
| index 3d911c1f5f35db19a103755edb194588f1248dd9..a4eb89d169e8177f1d472d5d333f8e3c86a0bfa4 100644
 | 
| --- a/webrtc/audio/audio_send_stream.h
 | 
| +++ b/webrtc/audio/audio_send_stream.h
 | 
| @@ -16,6 +16,9 @@
 | 
|  #include "webrtc/base/thread_checker.h"
 | 
|  
 | 
|  namespace webrtc {
 | 
| +
 | 
| +class VoiceEngine;
 | 
| +
 | 
|  namespace internal {
 | 
|  
 | 
|  class AudioSendStream final : public webrtc::AudioSendStream {
 | 
| @@ -36,6 +39,8 @@ class AudioSendStream final : public webrtc::AudioSendStream {
 | 
|    const webrtc::AudioSendStream::Config& config() const;
 | 
|  
 | 
|   private:
 | 
| +  VoiceEngine* voice_engine() const;
 | 
| +
 | 
|    rtc::ThreadChecker thread_checker_;
 | 
|    const webrtc::AudioSendStream::Config config_;
 | 
|    rtc::scoped_refptr<webrtc::AudioState> audio_state_;
 | 
| 
 |