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

Unified Diff: webrtc/test/call_test.h

Issue 1909333002: Switch voice transport to use Call and Stream instead of VoENetwork. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Addressed coments on ps#6 Created 4 years, 8 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
« no previous file with comments | « webrtc/media/engine/webrtcvoiceengine_unittest.cc ('k') | webrtc/test/call_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/test/call_test.h
diff --git a/webrtc/test/call_test.h b/webrtc/test/call_test.h
index 4d8e1179567b25c7e2c5a55e0034a6de97c80993..41a6b5a6c2387e3b07eda1b95140d27bfed77b85 100644
--- a/webrtc/test/call_test.h
+++ b/webrtc/test/call_test.h
@@ -14,7 +14,6 @@
#include <vector>
#include "webrtc/call.h"
-#include "webrtc/call/transport_adapter.h"
#include "webrtc/test/fake_audio_device.h"
#include "webrtc/test/fake_decoder.h"
#include "webrtc/test/fake_encoder.h"
@@ -25,7 +24,6 @@ namespace webrtc {
class VoEBase;
class VoECodec;
-class VoENetwork;
namespace test {
@@ -113,22 +111,16 @@ class CallTest : public ::testing::Test {
VoiceEngineState()
: voice_engine(nullptr),
base(nullptr),
- network(nullptr),
codec(nullptr),
- channel_id(-1),
- transport_adapter(nullptr) {}
+ channel_id(-1) {}
VoiceEngine* voice_engine;
VoEBase* base;
- VoENetwork* network;
VoECodec* codec;
int channel_id;
- rtc::scoped_ptr<internal::TransportAdapter> transport_adapter;
};
void CreateVoiceEngines();
- void SetupVoiceEngineTransports(PacketTransport* send_transport,
- PacketTransport* recv_transport);
void DestroyVoiceEngines();
VoiceEngineState voe_send_;
« no previous file with comments | « webrtc/media/engine/webrtcvoiceengine_unittest.cc ('k') | webrtc/test/call_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698