| Index: components/sync_driver/fake_data_type_controller.cc
|
| diff --git a/components/sync_driver/fake_data_type_controller.cc b/components/sync_driver/fake_data_type_controller.cc
|
| index 74af3b3b235e52ac3c494756140c11ff42d41d4d..093dba92a3eeba487179fe452b229ce010a1e994 100644
|
| --- a/components/sync_driver/fake_data_type_controller.cc
|
| +++ b/components/sync_driver/fake_data_type_controller.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "components/sync_driver/fake_data_type_controller.h"
|
|
|
| +#include "base/thread_task_runner_handle.h"
|
| #include "testing/gmock/include/gmock/gmock.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| @@ -12,7 +13,8 @@ using syncer::ModelType;
|
| namespace sync_driver {
|
|
|
| FakeDataTypeController::FakeDataTypeController(ModelType type)
|
| - : DataTypeController(base::MessageLoopProxy::current(), base::Closure()),
|
| + : DataTypeController(base::ThreadTaskRunnerHandle::Get(),
|
| + base::Closure()),
|
| state_(NOT_RUNNING),
|
| model_load_delayed_(false),
|
| type_(type),
|
|
|