Index: webrtc/voice_engine/voice_engine_impl.h |
diff --git a/webrtc/voice_engine/voice_engine_impl.h b/webrtc/voice_engine/voice_engine_impl.h |
index ec446c6f9682fe479ea1b5160854ae57214fdc9e..a22427128412f35273a19d079226a1e2a1c61e1e 100644 |
--- a/webrtc/voice_engine/voice_engine_impl.h |
+++ b/webrtc/voice_engine/voice_engine_impl.h |
@@ -18,7 +18,6 @@ |
#include "webrtc/voice_engine/voe_base_impl.h" |
#include "webrtc/voice_engine/voe_codec_impl.h" |
#include "webrtc/voice_engine/voe_file_impl.h" |
-#include "webrtc/voice_engine/voe_hardware_impl.h" |
#include "webrtc/voice_engine/voe_network_impl.h" |
#include "webrtc/voice_engine/voe_rtp_rtcp_impl.h" |
@@ -31,7 +30,6 @@ class VoiceEngineImpl : public voe::SharedData, // Must be the first base class |
public VoiceEngine, |
public VoECodecImpl, |
public VoEFileImpl, |
- public VoEHardwareImpl, |
public VoENetworkImpl, |
public VoERTP_RTCPImpl, |
public VoEBaseImpl { |
@@ -40,7 +38,6 @@ class VoiceEngineImpl : public voe::SharedData, // Must be the first base class |
: SharedData(), |
VoECodecImpl(this), |
VoEFileImpl(this), |
- VoEHardwareImpl(this), |
VoENetworkImpl(this), |
VoERTP_RTCPImpl(this), |
VoEBaseImpl(this), |