| 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_GENERIC_CHANGE_PROCESSOR_FACTORY_H_ | 5 #ifndef COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_FACTORY_H_ |
| 6 #define COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_FACTORY_H_ | 6 #define COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_FACTORY_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "components/sync/api/data_type_error_handler.h" | |
| 13 #include "components/sync/base/model_type.h" | 12 #include "components/sync/base/model_type.h" |
| 13 #include "components/sync/model/data_type_error_handler.h" |
| 14 | 14 |
| 15 namespace syncer { | 15 namespace syncer { |
| 16 | 16 |
| 17 class AttachmentService; | 17 class AttachmentService; |
| 18 class GenericChangeProcessor; | 18 class GenericChangeProcessor; |
| 19 class SyncClient; | 19 class SyncClient; |
| 20 class SyncMergeResult; | 20 class SyncMergeResult; |
| 21 class SyncableService; | 21 class SyncableService; |
| 22 struct UserShare; | 22 struct UserShare; |
| 23 | 23 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 42 const base::WeakPtr<SyncMergeResult>& merge_result, | 42 const base::WeakPtr<SyncMergeResult>& merge_result, |
| 43 SyncClient* sync_client); | 43 SyncClient* sync_client); |
| 44 | 44 |
| 45 private: | 45 private: |
| 46 DISALLOW_COPY_AND_ASSIGN(GenericChangeProcessorFactory); | 46 DISALLOW_COPY_AND_ASSIGN(GenericChangeProcessorFactory); |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 } // namespace syncer | 49 } // namespace syncer |
| 50 | 50 |
| 51 #endif // COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_FACTORY_H_ | 51 #endif // COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_FACTORY_H_ |
| OLD | NEW |