| Index: media/audio/clockless_audio_sink.cc
 | 
| diff --git a/media/audio/clockless_audio_sink.cc b/media/audio/clockless_audio_sink.cc
 | 
| index d0dd7e94230b1cdd6aab0d0099bbbf295b1049ac..1dc1a12cc3b3d97c7fc0228575a4f3bcb8914af2 100644
 | 
| --- a/media/audio/clockless_audio_sink.cc
 | 
| +++ b/media/audio/clockless_audio_sink.cc
 | 
| @@ -51,7 +51,8 @@ class ClocklessAudioSinkThread : public base::DelegateSimpleThread::Delegate {
 | 
|    void Run() override {
 | 
|       base::TimeTicks start;
 | 
|       while (!stop_event_->IsSignaled()) {
 | 
| -       const int frames_received = callback_->Render(audio_bus_.get(), 0, 0);
 | 
| +       const int frames_received = callback_->Render(
 | 
| +           base::TimeDelta(), base::TimeTicks::Now(), 0, audio_bus_.get());
 | 
|         DCHECK_GE(frames_received, 0);
 | 
|         if (audio_hash_)
 | 
|           audio_hash_->Update(audio_bus_.get(), frames_received);
 | 
| 
 |