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