| Index: chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc
|
| diff --git a/chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc b/chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc
|
| index 37fa19d8fdc72e6e3f497e9131480511123652a3..b0e3674714a66af8a661a1f15f11ec04c8be73c6 100644
|
| --- a/chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc
|
| +++ b/chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc
|
| @@ -8,9 +8,9 @@
|
| #include "base/bind.h"
|
| #include "base/file_util.h"
|
| #include "base/location.h"
|
| -#include "base/message_loop/message_loop_proxy.h"
|
| #include "base/run_loop.h"
|
| #include "base/stl_util.h"
|
| +#include "base/thread_task_runner_handle.h"
|
| #include "base/threading/thread.h"
|
| #include "chrome/browser/sync_file_system/file_change.h"
|
| #include "chrome/browser/sync_file_system/local/canned_syncable_file_system.h"
|
| @@ -88,12 +88,12 @@ void OnGetFileMetadata(const tracked_objects::Location& where,
|
| }
|
|
|
| ACTION_P(MockStatusCallback, status) {
|
| - base::MessageLoopProxy::current()->PostTask(
|
| + base::ThreadTaskRunnerHandle::Get()->PostTask(
|
| FROM_HERE, base::Bind(arg4, status));
|
| }
|
|
|
| ACTION_P2(MockStatusCallbackAndRecordChange, status, changes) {
|
| - base::MessageLoopProxy::current()->PostTask(
|
| + base::ThreadTaskRunnerHandle::Get()->PostTask(
|
| FROM_HERE, base::Bind(arg4, status));
|
| changes->push_back(arg0);
|
| }
|
|
|