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

Unified Diff: webrtc/voice_engine/test/auto_test/voe_standard_test.h

Issue 2645033002: Remove VoEExternalMedia interface. (Closed)
Patch Set: bad merge Created 3 years, 10 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/test/auto_test/voe_standard_test.h
diff --git a/webrtc/voice_engine/test/auto_test/voe_standard_test.h b/webrtc/voice_engine/test/auto_test/voe_standard_test.h
index ca2780d3c624c958a161913cf839665abcdb9c00..6109603b28f7b68d8d5e6b987024534dcd878c76 100644
--- a/webrtc/voice_engine/test/auto_test/voe_standard_test.h
+++ b/webrtc/voice_engine/test/auto_test/voe_standard_test.h
@@ -31,7 +31,6 @@ class SubAPIManager {
SubAPIManager()
: _base(true),
_codec(false),
- _externalMedia(false),
_file(false),
_hardware(false),
_netEqStats(false),
@@ -41,7 +40,6 @@ class SubAPIManager {
_volumeControl(false),
_apm(false) {
_codec = true;
- _externalMedia = true;
_file = true;
_hardware = true;
_netEqStats = true;
@@ -56,7 +54,7 @@ class SubAPIManager {
private:
bool _base, _codec;
- bool _externalMedia, _file, _hardware;
+ bool _file, _hardware;
bool _netEqStats, _network, _rtp_rtcp, _videoSync, _volumeControl, _apm;
};

Powered by Google App Engine
This is Rietveld 408576698