| Index: media/cast/test/utility/in_process_receiver.cc
|
| diff --git a/media/cast/test/utility/in_process_receiver.cc b/media/cast/test/utility/in_process_receiver.cc
|
| index 2b67666e7388727603e3dd60324b0fbc2666dbcf..4bc9e60c599e51b2fe05923ec7b81d23e109be2b 100644
|
| --- a/media/cast/test/utility/in_process_receiver.cc
|
| +++ b/media/cast/test/utility/in_process_receiver.cc
|
| @@ -120,9 +120,13 @@ void InProcessReceiver::GotAudioFrame(scoped_ptr<AudioBus> audio_frame,
|
|
|
| void InProcessReceiver::GotVideoFrame(
|
| const scoped_refptr<VideoFrame>& video_frame,
|
| - const base::TimeTicks& render_time) {
|
| + const base::TimeTicks& playout_time,
|
| + bool is_continuous) {
|
| DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN));
|
| - OnVideoFrame(video_frame, render_time);
|
| + if (video_frame) {
|
| + // TODO(miu): Pass |is_continuous| flag.
|
| + OnVideoFrame(video_frame, playout_time);
|
| + }
|
| PullNextVideoFrame();
|
| }
|
|
|
|
|