| 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 "base/macros.h" |
| 8 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 9 #include "sync/internal_api/public/base/model_type.h" | 10 #include "sync/internal_api/public/base/model_type.h" |
| 10 | 11 |
| 11 namespace syncer { | 12 namespace syncer { |
| 12 class AttachmentService; | 13 class AttachmentService; |
| 13 class SyncableService; | 14 class SyncableService; |
| 14 class SyncMergeResult; | 15 class SyncMergeResult; |
| 15 struct UserShare; | 16 struct UserShare; |
| 16 } | 17 } |
| 17 | 18 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 42 const base::WeakPtr<syncer::SyncMergeResult>& merge_result, | 43 const base::WeakPtr<syncer::SyncMergeResult>& merge_result, |
| 43 SyncClient* sync_client); | 44 SyncClient* sync_client); |
| 44 | 45 |
| 45 private: | 46 private: |
| 46 DISALLOW_COPY_AND_ASSIGN(GenericChangeProcessorFactory); | 47 DISALLOW_COPY_AND_ASSIGN(GenericChangeProcessorFactory); |
| 47 }; | 48 }; |
| 48 | 49 |
| 49 } // namespace sync_driver | 50 } // namespace sync_driver |
| 50 | 51 |
| 51 #endif // COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_FACTORY_H_ | 52 #endif // COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_FACTORY_H_ |
| OLD | NEW |