| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/sync_driver/sync_api_component_factory_mock.h" | 5 #include "components/sync_driver/sync_api_component_factory_mock.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "components/sync/api/attachments/attachment_store.h" |
| 10 #include "components/sync/core/attachments/attachment_service_impl.h" |
| 9 #include "components/sync_driver/change_processor.h" | 11 #include "components/sync_driver/change_processor.h" |
| 10 #include "components/sync_driver/local_device_info_provider_mock.h" | 12 #include "components/sync_driver/local_device_info_provider_mock.h" |
| 11 #include "components/sync_driver/model_associator.h" | 13 #include "components/sync_driver/model_associator.h" |
| 12 #include "sync/api/attachments/attachment_store.h" | |
| 13 #include "sync/internal_api/public/attachments/attachment_service_impl.h" | |
| 14 | 14 |
| 15 using sync_driver::AssociatorInterface; | 15 using sync_driver::AssociatorInterface; |
| 16 using sync_driver::ChangeProcessor; | 16 using sync_driver::ChangeProcessor; |
| 17 using testing::_; | 17 using testing::_; |
| 18 using testing::InvokeWithoutArgs; | 18 using testing::InvokeWithoutArgs; |
| 19 using testing::Return; | 19 using testing::Return; |
| 20 | 20 |
| 21 SyncApiComponentFactoryMock::SyncApiComponentFactoryMock() | 21 SyncApiComponentFactoryMock::SyncApiComponentFactoryMock() |
| 22 : local_device_(new sync_driver::LocalDeviceInfoProviderMock()) { | 22 : local_device_(new sync_driver::LocalDeviceInfoProviderMock()) { |
| 23 } | 23 } |
| (...skipping 30 matching lines...) Expand all Loading... |
| 54 | 54 |
| 55 std::unique_ptr<sync_driver::LocalDeviceInfoProvider> | 55 std::unique_ptr<sync_driver::LocalDeviceInfoProvider> |
| 56 SyncApiComponentFactoryMock::CreateLocalDeviceInfoProvider() { | 56 SyncApiComponentFactoryMock::CreateLocalDeviceInfoProvider() { |
| 57 return std::move(local_device_); | 57 return std::move(local_device_); |
| 58 } | 58 } |
| 59 | 59 |
| 60 void SyncApiComponentFactoryMock::SetLocalDeviceInfoProvider( | 60 void SyncApiComponentFactoryMock::SetLocalDeviceInfoProvider( |
| 61 std::unique_ptr<sync_driver::LocalDeviceInfoProvider> local_device) { | 61 std::unique_ptr<sync_driver::LocalDeviceInfoProvider> local_device) { |
| 62 local_device_ = std::move(local_device); | 62 local_device_ = std::move(local_device); |
| 63 } | 63 } |
| OLD | NEW |