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

Unified Diff: media/cast/video_receiver/video_receiver_unittest.cc

Issue 100823015: Cast: move net->transport (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updating transport callback Created 7 years 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/video_receiver/video_receiver.cc ('k') | media/cast/video_sender/video_sender.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/video_receiver/video_receiver_unittest.cc
diff --git a/media/cast/video_receiver/video_receiver_unittest.cc b/media/cast/video_receiver/video_receiver_unittest.cc
index 8001ac430d6783cae24e0ad64b7e5e0c48097180..e13f0f59dceeff8b2c3f0975da5b49bd0d8f0381 100644
--- a/media/cast/video_receiver/video_receiver_unittest.cc
+++ b/media/cast/video_receiver/video_receiver_unittest.cc
@@ -8,8 +8,8 @@
#include "base/test/simple_test_tick_clock.h"
#include "media/cast/cast_defines.h"
#include "media/cast/cast_environment.h"
-#include "media/cast/net/pacing/mock_paced_packet_sender.h"
#include "media/cast/test/fake_task_runner.h"
+#include "media/cast/transport/pacing/mock_paced_packet_sender.h"
#include "media/cast/video_receiver/video_receiver.h"
#include "testing/gmock/include/gmock/gmock.h"
@@ -58,7 +58,7 @@ class PeerVideoReceiver : public VideoReceiver {
public:
PeerVideoReceiver(scoped_refptr<CastEnvironment> cast_environment,
const VideoReceiverConfig& video_config,
- PacedPacketSender* const packet_sender)
+ transport::PacedPacketSender* const packet_sender)
: VideoReceiver(cast_environment, video_config, packet_sender) {
}
using VideoReceiver::IncomingParsedRtpPacket;
@@ -96,7 +96,7 @@ class VideoReceiverTest : public ::testing::Test {
rtp_header_.reference_frame_id = 0;
}
- MockPacedPacketSender mock_transport_;
+ transport::MockPacedPacketSender mock_transport_;
VideoReceiverConfig config_;
scoped_ptr<PeerVideoReceiver> receiver_;
std::vector<uint8> payload_;
« no previous file with comments | « media/cast/video_receiver/video_receiver.cc ('k') | media/cast/video_sender/video_sender.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698