Index: trunk/src/media/cast/cast_sender.h |
=================================================================== |
--- trunk/src/media/cast/cast_sender.h (revision 243647) |
+++ trunk/src/media/cast/cast_sender.h (working copy) |
@@ -51,10 +51,9 @@ |
// The callback is called from the main cast thread as soon as |
// the cast sender is done with the frame; it does not mean that the encoded |
// frame has been sent out. |
- virtual void InsertCodedAudioFrame( |
- const transport::EncodedAudioFrame* audio_frame, |
- const base::TimeTicks& recorded_time, |
- const base::Closure callback) = 0; |
+ virtual void InsertCodedAudioFrame(const EncodedAudioFrame* audio_frame, |
+ const base::TimeTicks& recorded_time, |
+ const base::Closure callback) = 0; |
protected: |
virtual ~FrameInput() {} |
@@ -85,7 +84,7 @@ |
// All RTCP packets for the session should be inserted to this object. |
// Can be called from any thread. |
- virtual scoped_refptr<transport::PacketReceiver> packet_receiver() = 0; |
+ virtual scoped_refptr<PacketReceiver> packet_receiver() = 0; |
}; |
} // namespace cast |