| Index: media/cast/test/receiver.cc
 | 
| diff --git a/media/cast/test/receiver.cc b/media/cast/test/receiver.cc
 | 
| index 2fce2427f3a009a394c3b7a3fc4d77caa876f475..62cc80cc068d3982bfd3e832a9fc8ffbb6c83f74 100644
 | 
| --- a/media/cast/test/receiver.cc
 | 
| +++ b/media/cast/test/receiver.cc
 | 
| @@ -26,6 +26,7 @@
 | 
|  #include "base/synchronization/waitable_event.h"
 | 
|  #include "base/threading/thread.h"
 | 
|  #include "base/time/default_tick_clock.h"
 | 
| +#include "base/time/time.h"
 | 
|  #include "base/timer/timer.h"
 | 
|  #include "media/audio/audio_io.h"
 | 
|  #include "media/audio/audio_manager.h"
 | 
| @@ -324,9 +325,10 @@ class NaivePlayer : public InProcessReceiver,
 | 
|    ////////////////////////////////////////////////////////////////////
 | 
|    // AudioSourceCallback implementation.
 | 
|  
 | 
| -  int OnMoreData(AudioBus* dest,
 | 
| -                 uint32_t total_bytes_delay,
 | 
| -                 uint32_t frames_skipped) final {
 | 
| +  int OnMoreData(base::TimeDelta /* delay */,
 | 
| +                 base::TimeTicks /* delay_timestamp */,
 | 
| +                 int /* prior_frames_skipped */,
 | 
| +                 AudioBus* dest) final {
 | 
|      // Note: This method is being invoked by a separate thread unknown to us
 | 
|      // (i.e., outside of CastEnvironment).
 | 
|  
 | 
| 
 |