| 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_H_ | 5 #ifndef COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_H_ |
| 6 #define COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_H_ | 6 #define COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
| 17 #include "base/threading/non_thread_safe.h" | 17 #include "base/threading/non_thread_safe.h" |
| 18 #include "components/sync/model/attachments/attachment_service.h" | 18 #include "components/sync/model/attachments/attachment_service.h" |
| 19 #include "components/sync/model/attachments/attachment_service_proxy.h" | 19 #include "components/sync/model/attachments/attachment_service_proxy.h" |
| 20 #include "components/sync/model/attachments/attachment_store.h" | 20 #include "components/sync/model/attachments/attachment_store.h" |
| 21 #include "components/sync/model/change_processor.h" | 21 #include "components/sync/model/change_processor.h" |
| 22 #include "components/sync/model/data_type_error_handler.h" | 22 #include "components/sync/model/data_type_error_handler.h" |
| 23 #include "components/sync/model/sync_change_processor.h" | 23 #include "components/sync/model/sync_change_processor.h" |
| 24 #include "components/sync/model/sync_merge_result.h" | 24 #include "components/sync/model/sync_merge_result.h" |
| 25 | 25 |
| 26 namespace syncer { | 26 namespace syncer { |
| 27 | 27 |
| 28 class SyncApiComponentFactory; | |
| 29 class SyncClient; | 28 class SyncClient; |
| 30 class SyncData; | 29 class SyncData; |
| 31 class SyncableService; | 30 class SyncableService; |
| 32 class WriteNode; | 31 class WriteNode; |
| 33 class WriteTransaction; | 32 class WriteTransaction; |
| 34 | 33 |
| 35 namespace syncable { | 34 namespace syncable { |
| 36 class Entry; | 35 class Entry; |
| 37 } // namespace syncable | 36 } // namespace syncable |
| 38 | 37 |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 attachment_service_weak_ptr_factory_; | 185 attachment_service_weak_ptr_factory_; |
| 187 AttachmentServiceProxy attachment_service_proxy_; | 186 AttachmentServiceProxy attachment_service_proxy_; |
| 188 base::WeakPtrFactory<GenericChangeProcessor> weak_ptr_factory_; | 187 base::WeakPtrFactory<GenericChangeProcessor> weak_ptr_factory_; |
| 189 | 188 |
| 190 DISALLOW_COPY_AND_ASSIGN(GenericChangeProcessor); | 189 DISALLOW_COPY_AND_ASSIGN(GenericChangeProcessor); |
| 191 }; | 190 }; |
| 192 | 191 |
| 193 } // namespace syncer | 192 } // namespace syncer |
| 194 | 193 |
| 195 #endif // COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_H_ | 194 #endif // COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_H_ |
| OLD | NEW |