| Index: chromecast/media/cma/ipc_streamer/av_streamer_proxy.cc
|
| diff --git a/chromecast/media/cma/ipc_streamer/av_streamer_proxy.cc b/chromecast/media/cma/ipc_streamer/av_streamer_proxy.cc
|
| index 6bc25edc3865f4baacadf15271c67318afc84a9b..30ff8952dc7b54bc9ba32cda1edae89ecacee540 100644
|
| --- a/chromecast/media/cma/ipc_streamer/av_streamer_proxy.cc
|
| +++ b/chromecast/media/cma/ipc_streamer/av_streamer_proxy.cc
|
| @@ -6,7 +6,8 @@
|
|
|
| #include "base/bind.h"
|
| #include "base/location.h"
|
| -#include "base/message_loop/message_loop_proxy.h"
|
| +#include "base/single_thread_task_runner.h"
|
| +#include "base/thread_task_runner_handle.h"
|
| #include "chromecast/media/cma/base/coded_frame_provider.h"
|
| #include "chromecast/media/cma/base/decoder_buffer_base.h"
|
| #include "chromecast/media/cma/ipc/media_memory_chunk.h"
|
| @@ -128,7 +129,7 @@ void AvStreamerProxy::ProcessPendingData() {
|
| }
|
|
|
| pending_av_data_ = false;
|
| - base::MessageLoopProxy::current()->PostTask(
|
| + base::ThreadTaskRunnerHandle::Get()->PostTask(
|
| FROM_HERE,
|
| base::Bind(&AvStreamerProxy::RequestBufferIfNeeded, weak_this_));
|
| }
|
|
|