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

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

Issue 126843003: Revert of Cast:Adding cast_transport_config and cleaning up (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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
« no previous file with comments | « media/cast/cast_sender.h ('k') | media/cast/cast_sender_impl.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 #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"
(...skipping 20 matching lines...) Expand all
31 CastSenderImpl( 31 CastSenderImpl(
32 scoped_refptr<CastEnvironment> cast_environment, 32 scoped_refptr<CastEnvironment> cast_environment,
33 const AudioSenderConfig& audio_config, 33 const AudioSenderConfig& audio_config,
34 const VideoSenderConfig& video_config, 34 const VideoSenderConfig& video_config,
35 const scoped_refptr<GpuVideoAcceleratorFactories>& gpu_factories, 35 const scoped_refptr<GpuVideoAcceleratorFactories>& gpu_factories,
36 PacketSender* const packet_sender); 36 PacketSender* const packet_sender);
37 37
38 virtual ~CastSenderImpl(); 38 virtual ~CastSenderImpl();
39 39
40 virtual scoped_refptr<FrameInput> frame_input() OVERRIDE; 40 virtual scoped_refptr<FrameInput> frame_input() OVERRIDE;
41 virtual scoped_refptr<transport::PacketReceiver> packet_receiver() OVERRIDE; 41 virtual scoped_refptr<PacketReceiver> packet_receiver() OVERRIDE;
42 42
43 private: 43 private:
44 transport::PacedSender pacer_; 44 transport::PacedSender pacer_;
45 AudioSender audio_sender_; 45 AudioSender audio_sender_;
46 VideoSender video_sender_; 46 VideoSender video_sender_;
47 scoped_refptr<FrameInput> frame_input_; 47 scoped_refptr<FrameInput> frame_input_;
48 scoped_refptr<transport::PacketReceiver> packet_receiver_; 48 scoped_refptr<PacketReceiver> packet_receiver_;
49 }; 49 };
50 50
51 } // namespace cast 51 } // namespace cast
52 } // namespace media 52 } // namespace media
53 53
54 #endif // MEDIA_CAST_CAST_SENDER_IMPL_H_ 54 #endif // MEDIA_CAST_CAST_SENDER_IMPL_H_
55 55
OLDNEW
« no previous file with comments | « media/cast/cast_sender.h ('k') | media/cast/cast_sender_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698