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

Side by Side Diff: media/cast/transport/rtp/packet_storage_unittest.cc

Issue 388663003: Cast: Reshuffle files under media/cast (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: DEPS 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698