| Index: media/audio/clockless_audio_sink.cc | 
| diff --git a/media/audio/clockless_audio_sink.cc b/media/audio/clockless_audio_sink.cc | 
| index 88e25b8af8db6c70912b11dca429d54f20c21e9e..77f7057119a1b424da9c7945db5af1225dbde430 100644 | 
| --- a/media/audio/clockless_audio_sink.cc | 
| +++ b/media/audio/clockless_audio_sink.cc | 
| @@ -44,10 +44,10 @@ class ClocklessAudioSinkThread : public base::DelegateSimpleThread::Delegate { | 
| base::PlatformThread::YieldCurrentThread(); | 
| } else if (start.is_null()) { | 
| // First time we processed some audio, so record the starting time. | 
| -         start = base::TimeTicks::HighResNow(); | 
| +         start = base::TimeTicks::Now(); | 
| } else { | 
| // Keep track of the last time data was rendered. | 
| -         playback_time_ = base::TimeTicks::HighResNow() - start; | 
| +         playback_time_ = base::TimeTicks::Now() - start; | 
| } | 
| } | 
| } | 
|  |