OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "media/cast/transport/rtp_sender/packet_storage/packet_storage.h" | 5 #include "media/cast/transport/rtp/packet_storage.h" |
6 | 6 |
7 #include <stdint.h> | 7 #include <stdint.h> |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/test/simple_test_tick_clock.h" | 11 #include "base/test/simple_test_tick_clock.h" |
12 #include "base/time/time.h" | 12 #include "base/time/time.h" |
13 #include "testing/gmock/include/gmock/gmock.h" | 13 #include "testing/gmock/include/gmock/gmock.h" |
14 | 14 |
15 namespace media { | 15 namespace media { |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 ASSERT_TRUE(storage.GetFrame8(frame_id)); | 106 ASSERT_TRUE(storage.GetFrame8(frame_id)); |
107 EXPECT_EQ(kStoredFrames + i + 1, | 107 EXPECT_EQ(kStoredFrames + i + 1, |
108 storage.GetFrame8(frame_id)->size()); | 108 storage.GetFrame8(frame_id)->size()); |
109 ++frame_id; | 109 ++frame_id; |
110 } | 110 } |
111 } | 111 } |
112 | 112 |
113 } // namespace transport | 113 } // namespace transport |
114 } // namespace cast | 114 } // namespace cast |
115 } // namespace media | 115 } // namespace media |
OLD | NEW |