| Index: chrome/renderer/media/cast_transport_sender_ipc.cc
|
| diff --git a/chrome/renderer/media/cast_transport_sender_ipc.cc b/chrome/renderer/media/cast_transport_sender_ipc.cc
|
| index 1dd3906329418d62aea78c5818c5ae0393606033..8ef6c4715314918b673cda122d92ab669735db94 100644
|
| --- a/chrome/renderer/media/cast_transport_sender_ipc.cc
|
| +++ b/chrome/renderer/media/cast_transport_sender_ipc.cc
|
| @@ -46,19 +46,13 @@ void CastTransportSenderIPC::InitializeVideo(
|
| }
|
|
|
| void CastTransportSenderIPC::InsertCodedAudioFrame(
|
| - const media::cast::transport::EncodedAudioFrame* audio_frame,
|
| - const base::TimeTicks& recorded_time) {
|
| - Send(new CastHostMsg_InsertCodedAudioFrame(channel_id_,
|
| - *audio_frame,
|
| - recorded_time));
|
| + const media::cast::transport::EncodedFrame& audio_frame) {
|
| + Send(new CastHostMsg_InsertCodedAudioFrame(channel_id_, audio_frame));
|
| }
|
|
|
| void CastTransportSenderIPC::InsertCodedVideoFrame(
|
| - const media::cast::transport::EncodedVideoFrame* video_frame,
|
| - const base::TimeTicks& capture_time) {
|
| - Send(new CastHostMsg_InsertCodedVideoFrame(channel_id_,
|
| - *video_frame,
|
| - capture_time));
|
| + const media::cast::transport::EncodedFrame& video_frame) {
|
| + Send(new CastHostMsg_InsertCodedVideoFrame(channel_id_, video_frame));
|
| }
|
|
|
| void CastTransportSenderIPC::SendRtcpFromRtpSender(
|
|
|