| Index: media/cast/cast_receiver.h
|
| diff --git a/media/cast/cast_receiver.h b/media/cast/cast_receiver.h
|
| index f4769a156e3292b33dbb13a39b8ec3b86c5a87a1..75e6f68d3bb2186e9d63afd863be5c384e862b1a 100644
|
| --- a/media/cast/cast_receiver.h
|
| +++ b/media/cast/cast_receiver.h
|
| @@ -28,7 +28,7 @@
|
| AudioFrameDecodedCallback;
|
|
|
| // Callback in which the encoded audio frame and play-out time will be returned.
|
| -typedef base::Callback<void(scoped_ptr<transport::EncodedAudioFrame>,
|
| +typedef base::Callback<void(scoped_ptr<EncodedAudioFrame>,
|
| const base::TimeTicks&)> AudioFrameEncodedCallback;
|
|
|
| // Callback in which the raw frame and render time will be returned once
|
| @@ -38,7 +38,7 @@
|
| VideoFrameDecodedCallback;
|
|
|
| // Callback in which the encoded video frame and render time will be returned.
|
| -typedef base::Callback<void(scoped_ptr<transport::EncodedVideoFrame>,
|
| +typedef base::Callback<void(scoped_ptr<EncodedVideoFrame>,
|
| const base::TimeTicks&)> VideoFrameEncodedCallback;
|
|
|
| // This Class is thread safe.
|
| @@ -74,7 +74,7 @@
|
|
|
| // All received RTP and RTCP packets for the call should be inserted to this
|
| // PacketReceiver.
|
| - virtual scoped_refptr<transport::PacketReceiver> packet_receiver() = 0;
|
| + virtual scoped_refptr<PacketReceiver> packet_receiver() = 0;
|
|
|
| // Polling interface to get audio and video frames from the CastReceiver.
|
| virtual scoped_refptr<FrameReceiver> frame_receiver() = 0;
|
|
|