| Index: media/cast/test/utility/in_process_receiver.h | 
| diff --git a/media/cast/test/utility/in_process_receiver.h b/media/cast/test/utility/in_process_receiver.h | 
| index de18845bfbcad04d12713bcc795dd232ad441a77..d50514fb638ac2dfba7a4c08767611894b4392c1 100644 | 
| --- a/media/cast/test/utility/in_process_receiver.h | 
| +++ b/media/cast/test/utility/in_process_receiver.h | 
| @@ -78,7 +78,7 @@ class InProcessReceiver { | 
| const base::TimeTicks& playout_time, | 
| bool is_continuous) = 0; | 
| virtual void OnVideoFrame(const scoped_refptr<VideoFrame>& video_frame, | 
| -                            const base::TimeTicks& render_time, | 
| +                            const base::TimeTicks& playout_time, | 
| bool is_continuous) = 0; | 
|  | 
| // Helper method that creates |transport_| and |cast_receiver_|, starts | 
| @@ -97,12 +97,15 @@ class InProcessReceiver { | 
| private: | 
| friend class base::RefCountedThreadSafe<InProcessReceiver>; | 
|  | 
| -  // CastReceiver callbacks that receive a frame and then request another. | 
| +  // CastReceiver callbacks that receive a frame and then request another.  See | 
| +  // comments for the callbacks defined in src/media/cast/cast_receiver.h for | 
| +  // argument description and semantics. | 
| void GotAudioFrame(scoped_ptr<AudioBus> audio_frame, | 
| const base::TimeTicks& playout_time, | 
| bool is_continuous); | 
| void GotVideoFrame(const scoped_refptr<VideoFrame>& video_frame, | 
| -                     const base::TimeTicks& render_time); | 
| +                     const base::TimeTicks& playout_time, | 
| +                     bool is_continuous); | 
| void PullNextAudioFrame(); | 
| void PullNextVideoFrame(); | 
|  | 
|  |