Index: trunk/src/media/cast/cast_receiver.h |
=================================================================== |
--- trunk/src/media/cast/cast_receiver.h (revision 243647) |
+++ trunk/src/media/cast/cast_receiver.h (working copy) |
@@ -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; |