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 #ifndef MEDIA_CAST_VIDEO_RECEIVER_VIDEO_RECEIVER_H_ | 5 #ifndef MEDIA_CAST_VIDEO_RECEIVER_VIDEO_RECEIVER_H_ |
6 #define MEDIA_CAST_VIDEO_RECEIVER_VIDEO_RECEIVER_H_ | 6 #define MEDIA_CAST_VIDEO_RECEIVER_VIDEO_RECEIVER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/callback.h" | 9 #include "base/callback.h" |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
13 #include "base/threading/non_thread_safe.h" | 13 #include "base/threading/non_thread_safe.h" |
14 #include "base/time/tick_clock.h" | 14 #include "base/time/tick_clock.h" |
15 #include "base/time/time.h" | 15 #include "base/time/time.h" |
16 #include "media/cast/cast_config.h" | 16 #include "media/cast/cast_config.h" |
17 #include "media/cast/cast_environment.h" | 17 #include "media/cast/cast_environment.h" |
18 #include "media/cast/cast_receiver.h" | 18 #include "media/cast/cast_receiver.h" |
19 #include "media/cast/rtcp/rtcp.h" | 19 #include "media/cast/rtcp/rtcp.h" |
20 #include "media/cast/rtp_common/rtp_defines.h" | |
21 #include "media/cast/rtp_receiver/rtp_receiver.h" | 20 #include "media/cast/rtp_receiver/rtp_receiver.h" |
| 21 #include "media/cast/rtp_receiver/rtp_receiver_defines.h" |
22 | 22 |
23 namespace crypto { | 23 namespace crypto { |
24 class Encryptor; | 24 class Encryptor; |
25 } | 25 } |
26 | 26 |
27 namespace media { | 27 namespace media { |
28 namespace cast { | 28 namespace cast { |
29 | 29 |
30 class Framer; | 30 class Framer; |
31 class LocalRtpVideoData; | 31 class LocalRtpVideoData; |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 | 124 |
125 base::WeakPtrFactory<VideoReceiver> weak_factory_; | 125 base::WeakPtrFactory<VideoReceiver> weak_factory_; |
126 | 126 |
127 DISALLOW_COPY_AND_ASSIGN(VideoReceiver); | 127 DISALLOW_COPY_AND_ASSIGN(VideoReceiver); |
128 }; | 128 }; |
129 | 129 |
130 } // namespace cast | 130 } // namespace cast |
131 } // namespace media | 131 } // namespace media |
132 | 132 |
133 #endif // MEDIA_CAST_VIDEO_RECEIVER_VIDEO_RECEIVER_H_ | 133 #endif // MEDIA_CAST_VIDEO_RECEIVER_VIDEO_RECEIVER_H_ |
OLD | NEW |