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

Side by Side Diff: media/cast/net/frame_id_wrap_helper_test.cc

Issue 112133002: Cast:Moving netwrok sender related code to a designated folder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: moving const' to .cc Created 7 years 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
« no previous file with comments | « media/cast/net/cast_net_defines.h ('k') | media/cast/net/pacing/mock_paced_packet_sender.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <gtest/gtest.h> 5 #include <gtest/gtest.h>
6 #include <media/cast/cast_defines.h> 6 #include "media/cast/net/cast_net_defines.h"
7 7
8 namespace media { 8 namespace media {
9 namespace cast { 9 namespace cast {
10 10
11 class FrameIdWrapHelperTest : public ::testing::Test { 11 class FrameIdWrapHelperTest : public ::testing::Test {
12 protected: 12 protected:
13 FrameIdWrapHelperTest() {} 13 FrameIdWrapHelperTest() {}
14 virtual ~FrameIdWrapHelperTest() {} 14 virtual ~FrameIdWrapHelperTest() {}
15 15
16 FrameIdWrapHelper frame_id_wrap_helper_; 16 FrameIdWrapHelper frame_id_wrap_helper_;
(...skipping 22 matching lines...) Expand all
39 new_frame_id = frame_id_wrap_helper_.MapTo32bitsFrameId(0u); 39 new_frame_id = frame_id_wrap_helper_.MapTo32bitsFrameId(0u);
40 EXPECT_EQ(256u, new_frame_id); 40 EXPECT_EQ(256u, new_frame_id);
41 new_frame_id = frame_id_wrap_helper_.MapTo32bitsFrameId(255u); 41 new_frame_id = frame_id_wrap_helper_.MapTo32bitsFrameId(255u);
42 EXPECT_EQ(255u, new_frame_id); 42 EXPECT_EQ(255u, new_frame_id);
43 new_frame_id = frame_id_wrap_helper_.MapTo32bitsFrameId(1u); 43 new_frame_id = frame_id_wrap_helper_.MapTo32bitsFrameId(1u);
44 EXPECT_EQ(257u, new_frame_id); 44 EXPECT_EQ(257u, new_frame_id);
45 } 45 }
46 46
47 } // namespace cast 47 } // namespace cast
48 } // namespace media 48 } // namespace media
OLDNEW
« no previous file with comments | « media/cast/net/cast_net_defines.h ('k') | media/cast/net/pacing/mock_paced_packet_sender.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698