| Index: media/cast/cast_receiver.h
|
| diff --git a/media/cast/cast_receiver.h b/media/cast/cast_receiver.h
|
| index f57942231d995a0be16e68e3d0c5eae3efc6368d..a2668c740e2ca4a5aad2d855af67646dd66c24b7 100644
|
| --- a/media/cast/cast_receiver.h
|
| +++ b/media/cast/cast_receiver.h
|
| @@ -16,6 +16,7 @@
|
| #include "media/base/audio_bus.h"
|
| #include "media/cast/cast_config.h"
|
| #include "media/cast/cast_environment.h"
|
| +#include "media/cast/net/cast_transport_sender.h"
|
|
|
| namespace media {
|
| class VideoFrame;
|
| @@ -51,13 +52,11 @@ class CastReceiver {
|
| scoped_refptr<CastEnvironment> cast_environment,
|
| const FrameReceiverConfig& audio_config,
|
| const FrameReceiverConfig& video_config,
|
| - PacketSender* const packet_sender);
|
| + CastTransportSender* const transport);
|
|
|
| // All received RTP and RTCP packets for the call should be sent to this
|
| // PacketReceiver. Can be called from any thread.
|
| - // TODO(hubbe): Replace with:
|
| - // virtual void ReceivePacket(scoped_ptr<Packet> packet) = 0;
|
| - virtual PacketReceiverCallback packet_receiver() = 0;
|
| + virtual void ReceivePacket(scoped_ptr<Packet> packet) = 0;
|
|
|
| // Polling interface to get audio and video frames from the CastReceiver. The
|
| // the RequestDecodedXXXXXFrame() methods utilize internal software-based
|
|
|