| Index: components/arc/standalone/arc_standalone_bridge_runner.cc
|
| diff --git a/components/arc/standalone/arc_standalone_bridge_runner.cc b/components/arc/standalone/arc_standalone_bridge_runner.cc
|
| index 6acfcb5abb663f3e6af24010f96dd020b2d530be..1e9f5c0e907a671b63f791f4bd328df63c2f2a3b 100644
|
| --- a/components/arc/standalone/arc_standalone_bridge_runner.cc
|
| +++ b/components/arc/standalone/arc_standalone_bridge_runner.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "base/bind.h"
|
| #include "base/run_loop.h"
|
| +#include "base/single_thread_task_runner.h"
|
|
|
| namespace arc {
|
|
|
| @@ -28,7 +29,7 @@ void ArcStandaloneBridgeRunner::Stop(int exit_code) {
|
| DCHECK(thread_checker_.CalledOnValidThread());
|
| exit_code_ = exit_code;
|
| CHECK(run_loop_);
|
| - message_loop_.PostTask(FROM_HERE, run_loop_->QuitClosure());
|
| + message_loop_.task_runner()->PostTask(FROM_HERE, run_loop_->QuitClosure());
|
| }
|
|
|
| } // namespace arc
|
|
|