| Index: webrtc/api/peerconnectioninterface.h | 
| diff --git a/webrtc/api/peerconnectioninterface.h b/webrtc/api/peerconnectioninterface.h | 
| index b346783bb37048699b95e256026b8bf1a92bb08e..2e3f2f1386f076c36f4104a5b6362f2c4aff7f01 100644 | 
| --- a/webrtc/api/peerconnectioninterface.h | 
| +++ b/webrtc/api/peerconnectioninterface.h | 
| @@ -91,6 +91,7 @@ | 
| #include "webrtc/base/sslstreamadapter.h" | 
| #include "webrtc/media/base/mediachannel.h" | 
| #include "webrtc/media/base/videocapturer.h" | 
| +#include "webrtc/modules/audio_coding/codecs/audio_encoder_factory.h" | 
| #include "webrtc/p2p/base/portallocator.h" | 
|  | 
| namespace rtc { | 
| @@ -984,14 +985,6 @@ class PeerConnectionFactoryInterface : public rtc::RefCountInterface { | 
| ~PeerConnectionFactoryInterface() {} // NOLINT | 
| }; | 
|  | 
| -// TODO(ossu): Remove these and define a real builtin audio encoder factory | 
| -// instead. | 
| -class AudioEncoderFactory : public rtc::RefCountInterface {}; | 
| -inline rtc::scoped_refptr<AudioEncoderFactory> | 
| -CreateBuiltinAudioEncoderFactory() { | 
| -  return nullptr; | 
| -} | 
| - | 
| // Create a new instance of PeerConnectionFactoryInterface. | 
| // | 
| // This method relies on the thread it's called on as the "signaling thread" | 
|  |