| Index: remoting/host/client_session.cc
|
| diff --git a/remoting/host/client_session.cc b/remoting/host/client_session.cc
|
| index 10e4d078a2a1d688b87a0b136e64f154945112bd..d6a02fa64e5c4877b33fbb7bce16342630398590 100644
|
| --- a/remoting/host/client_session.cc
|
| +++ b/remoting/host/client_session.cc
|
| @@ -6,7 +6,8 @@
|
|
|
| #include <algorithm>
|
|
|
| -#include "base/message_loop/message_loop_proxy.h"
|
| +#include "base/single_thread_task_runner.h"
|
| +#include "base/thread_task_runner_handle.h"
|
| #include "remoting/base/capabilities.h"
|
| #include "remoting/base/logging.h"
|
| #include "remoting/codec/audio_encoder.h"
|
| @@ -502,7 +503,7 @@ scoped_ptr<protocol::ClipboardStub> ClientSession::CreateClipboardProxy() {
|
|
|
| return make_scoped_ptr(
|
| new protocol::ClipboardThreadProxy(client_clipboard_factory_.GetWeakPtr(),
|
| - base::MessageLoopProxy::current()));
|
| + base::ThreadTaskRunnerHandle::Get()));
|
| }
|
|
|
| } // namespace remoting
|
|
|