| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef COMPONENTS_SYNC_DRIVER_SYNC_API_COMPONENT_FACTORY_H_ | 5 #ifndef COMPONENTS_SYNC_DRIVER_SYNC_API_COMPONENT_FACTORY_H_ |
| 6 #define COMPONENTS_SYNC_DRIVER_SYNC_API_COMPONENT_FACTORY_H_ | 6 #define COMPONENTS_SYNC_DRIVER_SYNC_API_COMPONENT_FACTORY_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "components/sync/api/attachments/attachment_service.h" | |
| 13 #include "components/sync/api/data_type_error_handler.h" | |
| 14 #include "components/sync/api/syncable_service.h" | |
| 15 #include "components/sync/base/model_type.h" | 12 #include "components/sync/base/model_type.h" |
| 16 #include "components/sync/driver/data_type_controller.h" | 13 #include "components/sync/driver/data_type_controller.h" |
| 14 #include "components/sync/model/attachments/attachment_service.h" |
| 15 #include "components/sync/model/data_type_error_handler.h" |
| 16 #include "components/sync/model/syncable_service.h" |
| 17 | 17 |
| 18 namespace base { | 18 namespace base { |
| 19 class FilePath; | 19 class FilePath; |
| 20 } // namespace base | 20 } // namespace base |
| 21 | 21 |
| 22 namespace history { | 22 namespace history { |
| 23 class HistoryBackend; | 23 class HistoryBackend; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace invalidation { | 26 namespace invalidation { |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 std::unique_ptr<AttachmentStoreForSync> attachment_store, | 125 std::unique_ptr<AttachmentStoreForSync> attachment_store, |
| 126 const UserShare& user_share, | 126 const UserShare& user_share, |
| 127 const std::string& store_birthday, | 127 const std::string& store_birthday, |
| 128 ModelType model_type, | 128 ModelType model_type, |
| 129 AttachmentService::Delegate* delegate) = 0; | 129 AttachmentService::Delegate* delegate) = 0; |
| 130 }; | 130 }; |
| 131 | 131 |
| 132 } // namespace syncer | 132 } // namespace syncer |
| 133 | 133 |
| 134 #endif // COMPONENTS_SYNC_DRIVER_SYNC_API_COMPONENT_FACTORY_H_ | 134 #endif // COMPONENTS_SYNC_DRIVER_SYNC_API_COMPONENT_FACTORY_H_ |
| OLD | NEW |