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