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

Unified Diff: media/cast/net/pacing/paced_sender_unittest.cc

Issue 2048033003: Refactoring: CastTransport InitializeAudio/InitializeVideo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add comments. Created 4 years, 5 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 | « media/cast/net/pacing/paced_sender.cc ('k') | media/cast/net/rtp/rtp_packetizer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/net/pacing/paced_sender_unittest.cc
diff --git a/media/cast/net/pacing/paced_sender_unittest.cc b/media/cast/net/pacing/paced_sender_unittest.cc
index a21bce0624eec53b87fc5881f4584d1ee7b269a3..5da422653784419b60ba990b66779c5c58ad7f3e 100644
--- a/media/cast/net/pacing/paced_sender_unittest.cc
+++ b/media/cast/net/pacing/paced_sender_unittest.cc
@@ -99,8 +99,8 @@ class PacedSenderTest : public ::testing::Test {
paced_sender_.reset(new PacedSender(kTargetBurstSize, kMaxBurstSize,
&testing_clock_, &packet_events_,
&mock_transport_, task_runner_));
- paced_sender_->RegisterAudioSsrc(kAudioSsrc);
- paced_sender_->RegisterVideoSsrc(kVideoSsrc);
+ paced_sender_->RegisterSsrc(kAudioSsrc, true);
+ paced_sender_->RegisterSsrc(kVideoSsrc, false);
}
static void UpdateCastTransportStatus(CastTransportStatus status) {
« no previous file with comments | « media/cast/net/pacing/paced_sender.cc ('k') | media/cast/net/rtp/rtp_packetizer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698