| Index: base/synchronization/cancellation_flag_unittest.cc
|
| diff --git a/base/synchronization/cancellation_flag_unittest.cc b/base/synchronization/cancellation_flag_unittest.cc
|
| index 02b08b6a9de74e38c584d10ff3a30685d7e2308d..13c74bcbd45ffa7b12703e93ab4c5065ccbff88b 100644
|
| --- a/base/synchronization/cancellation_flag_unittest.cc
|
| +++ b/base/synchronization/cancellation_flag_unittest.cc
|
| @@ -7,8 +7,9 @@
|
| #include "base/synchronization/cancellation_flag.h"
|
|
|
| #include "base/bind.h"
|
| +#include "base/location.h"
|
| #include "base/logging.h"
|
| -#include "base/message_loop/message_loop.h"
|
| +#include "base/single_thread_task_runner.h"
|
| #include "base/synchronization/spin_wait.h"
|
| #include "base/threading/thread.h"
|
| #include "base/time/time.h"
|
| @@ -56,7 +57,7 @@ TEST(CancellationFlagTest, SetOnDifferentThreadDeathTest) {
|
| ASSERT_TRUE(t.IsRunning());
|
|
|
| CancellationFlag flag;
|
| - t.message_loop()->PostTask(FROM_HERE, base::Bind(&CancelHelper, &flag));
|
| + t.task_runner()->PostTask(FROM_HERE, base::Bind(&CancelHelper, &flag));
|
| }
|
|
|
| } // namespace
|
|
|