| 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 9f7749bfe1c089b602d27caa0e36f3a5ab0433c1..9d78e084b3e75bb253752e68b706b4959dddefc8 100644
|
| --- a/media/cast/test/utility/in_process_receiver.cc
|
| +++ b/media/cast/test/utility/in_process_receiver.cc
|
| @@ -111,9 +111,11 @@ 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, true /* pending CL to set this */);
|
| + if (video_frame)
|
| + OnVideoFrame(video_frame, playout_time, is_continuous);
|
| PullNextVideoFrame();
|
| }
|
|
|
|
|