| 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 #ifndef MEDIA_CAST_CAST_SENDER_IMPL_H_ | 4 #ifndef MEDIA_CAST_CAST_SENDER_IMPL_H_ |
| 5 #define MEDIA_CAST_CAST_SENDER_IMPL_H_ | 5 #define MEDIA_CAST_CAST_SENDER_IMPL_H_ |
| 6 | 6 |
| 7 #include "base/memory/ref_counted.h" | 7 #include "base/memory/ref_counted.h" |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "media/cast/audio_sender/audio_sender.h" | 9 #include "media/cast/audio_sender/audio_sender.h" |
| 10 #include "media/cast/cast_config.h" | 10 #include "media/cast/cast_config.h" |
| 11 #include "media/cast/cast_environment.h" | 11 #include "media/cast/cast_environment.h" |
| 12 #include "media/cast/cast_sender.h" | 12 #include "media/cast/cast_sender.h" |
| 13 #include "media/cast/pacing/paced_sender.h" | 13 #include "media/cast/net/pacing/paced_sender.h" |
| 14 #include "media/cast/video_sender/video_sender.h" | 14 #include "media/cast/video_sender/video_sender.h" |
| 15 | 15 |
| 16 namespace media { | 16 namespace media { |
| 17 class VideoFrame; | 17 class VideoFrame; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace media { | 20 namespace media { |
| 21 namespace cast { | 21 namespace cast { |
| 22 | 22 |
| 23 class AudioSender; | 23 class AudioSender; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 45 VideoSender video_sender_; | 45 VideoSender video_sender_; |
| 46 scoped_refptr<FrameInput> frame_input_; | 46 scoped_refptr<FrameInput> frame_input_; |
| 47 scoped_refptr<PacketReceiver> packet_receiver_; | 47 scoped_refptr<PacketReceiver> packet_receiver_; |
| 48 }; | 48 }; |
| 49 | 49 |
| 50 } // namespace cast | 50 } // namespace cast |
| 51 } // namespace media | 51 } // namespace media |
| 52 | 52 |
| 53 #endif // MEDIA_CAST_CAST_SENDER_IMPL_H_ | 53 #endif // MEDIA_CAST_CAST_SENDER_IMPL_H_ |
| 54 | 54 |
| OLD | NEW |