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

Unified Diff: webrtc/test/fake_network_pipe.h

Issue 2783853002: Reland of Don't hardcode MediaType::ANY in FakeNetworkPipe. (Closed)
Patch Set: Fix braces. Add comment on use of demuxer. 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/test/fake_network_pipe.h
diff --git a/webrtc/test/fake_network_pipe.h b/webrtc/test/fake_network_pipe.h
index 0c73e85e1edfa829d7dfa25524479a024de107c8..adf76c3a7bae731b05b6498aa792c747d0d96797 100644
--- a/webrtc/test/fake_network_pipe.h
+++ b/webrtc/test/fake_network_pipe.h
@@ -25,6 +25,7 @@ namespace webrtc {
class Clock;
class PacketReceiver;
+enum class MediaType;
class NetworkPacket {
public:
@@ -82,9 +83,10 @@ class FakeNetworkPipe {
int avg_burst_loss_length = -1;
};
- FakeNetworkPipe(Clock* clock, const FakeNetworkPipe::Config& config);
+ FakeNetworkPipe(Clock* clock, const FakeNetworkPipe::Config& config,
+ MediaType media_type);
perkj_webrtc 2017/03/30 09:13:24 This will not work for tests that mux audio and vi
nisse-webrtc 2017/03/30 09:22:35 For webrtc tests, I fixed that case by adding a pa
FakeNetworkPipe(Clock* clock,
- const FakeNetworkPipe::Config& config,
+ const FakeNetworkPipe::Config& config, MediaType media_type,
uint64_t seed);
~FakeNetworkPipe();
@@ -110,6 +112,7 @@ class FakeNetworkPipe {
private:
Clock* const clock_;
+ const MediaType media_type_;
rtc::CriticalSection lock_;
PacketReceiver* packet_receiver_;
std::queue<NetworkPacket*> capacity_link_;

Powered by Google App Engine
This is Rietveld 408576698