| Index: remoting/host/screen_recorder.cc | 
| diff --git a/remoting/host/screen_recorder.cc b/remoting/host/screen_recorder.cc | 
| index 38b993245658cf8d269c4e010f84c0765421a24e..cd5e7fa719d4b9254dc80c304831227de63a637f 100644 | 
| --- a/remoting/host/screen_recorder.cc | 
| +++ b/remoting/host/screen_recorder.cc | 
| @@ -11,7 +11,6 @@ | 
| #include "base/stl_util-inl.h" | 
| #include "base/task.h" | 
| #include "base/time.h" | 
| -#include "media/base/callback.h" | 
| #include "remoting/base/capture_data.h" | 
| #include "remoting/base/tracer.h" | 
| #include "remoting/proto/control.pb.h" | 
| @@ -151,7 +150,7 @@ void ScreenRecorder::DoStart() { | 
| void ScreenRecorder::DoStop(Task* done_task) { | 
| DCHECK_EQ(capture_loop_, MessageLoop::current()); | 
|  | 
| -  media::AutoTaskRunner done_runner(done_task); | 
| +  ScopedTaskRunner done_runner(done_task); | 
|  | 
| // We might have not started when we receive a stop command, simply run the | 
| // task and then return. | 
|  |