| Index: media/cast/cast_environment.cc
|
| diff --git a/media/cast/cast_environment.cc b/media/cast/cast_environment.cc
|
| index e3def4ff973b205ec86380039b50d5a136720d53..ea1f2ac586bc7a7fc0ec78043f76def39130f67a 100644
|
| --- a/media/cast/cast_environment.cc
|
| +++ b/media/cast/cast_environment.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "media/cast/cast_environment.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/bind.h"
|
| #include "base/location.h"
|
| #include "base/logging.h"
|
| @@ -21,7 +23,7 @@ CastEnvironment::CastEnvironment(
|
| : main_thread_proxy_(main_thread_proxy),
|
| audio_thread_proxy_(audio_thread_proxy),
|
| video_thread_proxy_(video_thread_proxy),
|
| - clock_(clock.Pass()),
|
| + clock_(std::move(clock)),
|
| logger_(this) {}
|
|
|
| CastEnvironment::~CastEnvironment() {}
|
|
|