Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(789)

Unified Diff: webrtc/voice_engine/voice_engine_impl.h

Issue 2727063004: Remove VoEVolumeControl interface. (Closed)
Patch Set: fix Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 36ea43957e52e9c349e6f342e8f335577dea9def..b81844f061fcca2f8c6eaab226436c60f8a0bf59 100644
--- a/webrtc/voice_engine/voice_engine_impl.h
+++ b/webrtc/voice_engine/voice_engine_impl.h
@@ -23,7 +23,6 @@
#include "webrtc/voice_engine/voe_neteq_stats_impl.h"
#include "webrtc/voice_engine/voe_network_impl.h"
#include "webrtc/voice_engine/voe_rtp_rtcp_impl.h"
-#include "webrtc/voice_engine/voe_volume_control_impl.h"
namespace webrtc {
namespace voe {
@@ -39,7 +38,6 @@ class VoiceEngineImpl : public voe::SharedData, // Must be the first base class
public VoENetEqStatsImpl,
public VoENetworkImpl,
public VoERTP_RTCPImpl,
- public VoEVolumeControlImpl,
public VoEBaseImpl {
public:
VoiceEngineImpl()
@@ -51,7 +49,6 @@ class VoiceEngineImpl : public voe::SharedData, // Must be the first base class
VoENetEqStatsImpl(this),
VoENetworkImpl(this),
VoERTP_RTCPImpl(this),
- VoEVolumeControlImpl(this),
VoEBaseImpl(this),
_ref_count(0) {}
~VoiceEngineImpl() override { assert(_ref_count.Value() == 0); }

Powered by Google App Engine
This is Rietveld 408576698