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

Unified Diff: media/cast/net/rtp/rtp_packetizer_unittest.cc

Issue 388663003: Cast: Reshuffle files under media/cast (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: missing includes Created 6 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/rtp/rtp_packetizer.cc ('k') | media/cast/net/rtp/rtp_parser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/net/rtp/rtp_packetizer_unittest.cc
diff --git a/media/cast/transport/rtp_sender/rtp_packetizer/rtp_packetizer_unittest.cc b/media/cast/net/rtp/rtp_packetizer_unittest.cc
similarity index 93%
rename from media/cast/transport/rtp_sender/rtp_packetizer/rtp_packetizer_unittest.cc
rename to media/cast/net/rtp/rtp_packetizer_unittest.cc
index 64def4ce7fa091de935e0453d14dbbccc9680ece..38cc79641027d64a730ba36a821e2b003c8f391d 100644
--- a/media/cast/transport/rtp_sender/rtp_packetizer/rtp_packetizer_unittest.cc
+++ b/media/cast/net/rtp/rtp_packetizer_unittest.cc
@@ -2,22 +2,22 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "media/cast/transport/rtp_sender/rtp_packetizer/rtp_packetizer.h"
+#include "media/cast/net/rtp/rtp_packetizer.h"
#include <stdint.h>
#include "base/memory/scoped_ptr.h"
#include "base/test/simple_test_tick_clock.h"
+#include "media/cast/logging/logging_impl.h"
#include "media/cast/logging/simple_event_subscriber.h"
+#include "media/cast/net/pacing/paced_sender.h"
+#include "media/cast/net/rtp/packet_storage.h"
+#include "media/cast/net/rtp/rtp_header_parser.h"
#include "media/cast/test/fake_single_thread_task_runner.h"
-#include "media/cast/transport/pacing/paced_sender.h"
-#include "media/cast/transport/rtp_sender/packet_storage/packet_storage.h"
-#include "media/cast/transport/rtp_sender/rtp_packetizer/test/rtp_header_parser.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace media {
namespace cast {
-namespace transport {
namespace {
static const int kPayload = 127;
@@ -26,7 +26,6 @@ static const uint16 kSeqNum = 33;
static const int kMaxPacketLength = 1500;
static const int kSsrc = 0x12345;
static const unsigned int kFrameSize = 5000;
-static const uint32 kStartFrameId = UINT32_C(0xffffffff);
}
class TestRtpPacketTransport : public PacketSender {
@@ -170,6 +169,5 @@ TEST_F(RtpPacketizerTest, Stats) {
EXPECT_EQ(expected_num_of_packets, transport_->number_of_packets_received());
}
-} // namespace transport
} // namespace cast
} // namespace media
« no previous file with comments | « media/cast/net/rtp/rtp_packetizer.cc ('k') | media/cast/net/rtp/rtp_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698