| 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
|
|
|