| Index: media/base/pipeline.cc
|
| diff --git a/media/base/pipeline.cc b/media/base/pipeline.cc
|
| index fd8b902d7f3808bb296fae869dde8e0aefee8303..47bbaeab204ffc569895cee73c4185823378aaa0 100644
|
| --- a/media/base/pipeline.cc
|
| +++ b/media/base/pipeline.cc
|
| @@ -10,6 +10,7 @@
|
| #include "base/callback.h"
|
| #include "base/callback_helpers.h"
|
| #include "base/compiler_specific.h"
|
| +#include "base/default_clock.h"
|
| #include "base/metrics/histogram.h"
|
| #include "base/message_loop.h"
|
| #include "base/stl_util.h"
|
| @@ -72,7 +73,7 @@ Pipeline::Pipeline(const scoped_refptr<base::MessageLoopProxy>& message_loop,
|
| natural_size_(0, 0),
|
| volume_(1.0f),
|
| playback_rate_(0.0f),
|
| - clock_(new Clock(&base::Time::Now)),
|
| + clock_(new Clock(base::DefaultClock::Get())),
|
| waiting_for_clock_update_(false),
|
| status_(PIPELINE_OK),
|
| has_audio_(false),
|
|
|