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

Side by Side Diff: media/cast/framer/framer.h

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/framer/frame_id_map.cc ('k') | media/cast/framer/framer_unittest.cc » ('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 #ifndef MEDIA_CAST_FRAMER_FRAMER_H_ 5 #ifndef MEDIA_CAST_FRAMER_FRAMER_H_
6 #define MEDIA_CAST_FRAMER_FRAMER_H_ 6 #define MEDIA_CAST_FRAMER_FRAMER_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/memory/linked_ptr.h" 11 #include "base/memory/linked_ptr.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "base/time/tick_clock.h" 13 #include "base/time/tick_clock.h"
14 #include "base/time/time.h" 14 #include "base/time/time.h"
15 #include "media/cast/framer/cast_message_builder.h" 15 #include "media/cast/framer/cast_message_builder.h"
16 #include "media/cast/framer/frame_buffer.h" 16 #include "media/cast/framer/frame_buffer.h"
17 #include "media/cast/framer/frame_id_map.h" 17 #include "media/cast/framer/frame_id_map.h"
18 #include "media/cast/rtcp/rtcp.h" 18 #include "media/cast/rtcp/rtcp.h"
19 #include "media/cast/rtp_common/rtp_defines.h" 19 #include "media/cast/rtp_receiver/rtp_receiver_defines.h"
20 20
21 namespace media { 21 namespace media {
22 namespace cast { 22 namespace cast {
23 23
24 typedef std::map<uint32, linked_ptr<FrameBuffer> > FrameList; 24 typedef std::map<uint32, linked_ptr<FrameBuffer> > FrameList;
25 25
26 class Framer { 26 class Framer {
27 public: 27 public:
28 Framer(base::TickClock* clock, 28 Framer(base::TickClock* clock,
29 RtpPayloadFeedback* incoming_payload_feedback, 29 RtpPayloadFeedback* incoming_payload_feedback,
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 64
65 scoped_ptr<CastMessageBuilder> cast_msg_builder_; 65 scoped_ptr<CastMessageBuilder> cast_msg_builder_;
66 66
67 DISALLOW_COPY_AND_ASSIGN(Framer); 67 DISALLOW_COPY_AND_ASSIGN(Framer);
68 }; 68 };
69 69
70 } // namespace cast 70 } // namespace cast
71 } // namespace media 71 } // namespace media
72 72
73 #endif // MEDIA_CAST_FRAMER_FRAMER_H_ 73 #endif // MEDIA_CAST_FRAMER_FRAMER_H_
OLDNEW
« no previous file with comments | « media/cast/framer/frame_id_map.cc ('k') | media/cast/framer/framer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698