| Index: media/cast/net/rtp/packet_storage.cc
|
| diff --git a/media/cast/transport/rtp_sender/packet_storage/packet_storage.cc b/media/cast/net/rtp/packet_storage.cc
|
| similarity index 93%
|
| rename from media/cast/transport/rtp_sender/packet_storage/packet_storage.cc
|
| rename to media/cast/net/rtp/packet_storage.cc
|
| index a748baa27ab5a44bd1d943efe72dccf6453b7f30..877551b383d767964b3ac0117c7a54187698b43b 100644
|
| --- a/media/cast/transport/rtp_sender/packet_storage/packet_storage.cc
|
| +++ b/media/cast/net/rtp/packet_storage.cc
|
| @@ -2,15 +2,15 @@
|
| // 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/packet_storage/packet_storage.h"
|
| +#include "media/cast/net/rtp/packet_storage.h"
|
|
|
| #include <string>
|
|
|
| #include "base/logging.h"
|
| +#include "media/cast/cast_defines.h"
|
|
|
| namespace media {
|
| namespace cast {
|
| -namespace transport {
|
|
|
| PacketStorage::PacketStorage(size_t stored_frames)
|
| : max_stored_frames_(stored_frames),
|
| @@ -60,6 +60,5 @@ const SendPacketVector* PacketStorage::GetFrame8(uint8 frame_id_8bits) const {
|
| return &(frames_[index_8bits]);
|
| }
|
|
|
| -} // namespace transport
|
| } // namespace cast
|
| } // namespace media
|
|
|