| Index: voice_engine/voice_engine_impl.h
|
| diff --git a/voice_engine/voice_engine_impl.h b/voice_engine/voice_engine_impl.h
|
| index ef03e706a1db7b6604043b2072eae69c32f11fd8..2ede6c3bdf01e4e7c28bb6a2fec114043c0d1e34 100644
|
| --- a/voice_engine/voice_engine_impl.h
|
| +++ b/voice_engine/voice_engine_impl.h
|
| @@ -17,7 +17,6 @@
|
| #include "typedefs.h" // NOLINT(build/include)
|
| #include "voice_engine/voe_base_impl.h"
|
| #include "voice_engine/voe_network_impl.h"
|
| -#include "voice_engine/voe_rtp_rtcp_impl.h"
|
|
|
| namespace webrtc {
|
| namespace voe {
|
| @@ -27,13 +26,11 @@ class ChannelProxy;
|
| class VoiceEngineImpl : public voe::SharedData, // Must be the first base class
|
| public VoiceEngine,
|
| public VoENetworkImpl,
|
| - public VoERTP_RTCPImpl,
|
| public VoEBaseImpl {
|
| public:
|
| VoiceEngineImpl()
|
| : SharedData(),
|
| VoENetworkImpl(this),
|
| - VoERTP_RTCPImpl(this),
|
| VoEBaseImpl(this),
|
| _ref_count(0) {}
|
| ~VoiceEngineImpl() override { assert(_ref_count.Value() == 0); }
|
|
|