| 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_FAKE_GENERIC_CHANGE_PROCESSOR_H_ | 5 #ifndef COMPONENTS_SYNC_DRIVER_FAKE_GENERIC_CHANGE_PROCESSOR_H_ |
| 6 #define COMPONENTS_SYNC_DRIVER_FAKE_GENERIC_CHANGE_PROCESSOR_H_ | 6 #define COMPONENTS_SYNC_DRIVER_FAKE_GENERIC_CHANGE_PROCESSOR_H_ |
| 7 | 7 |
| 8 #include <memory> |
| 8 #include <string> | 9 #include <string> |
| 9 | 10 |
| 10 #include "base/macros.h" | 11 #include "base/macros.h" |
| 11 #include "components/sync/api/sync_error.h" | 12 #include "components/sync/api/sync_error.h" |
| 12 #include "components/sync/base/model_type.h" | 13 #include "components/sync/base/model_type.h" |
| 13 #include "components/sync/driver/generic_change_processor.h" | 14 #include "components/sync/driver/generic_change_processor.h" |
| 14 #include "components/sync/driver/generic_change_processor_factory.h" | 15 #include "components/sync/driver/generic_change_processor_factory.h" |
| 15 #include "components/sync/driver/sync_api_component_factory.h" | 16 #include "components/sync/driver/sync_api_component_factory.h" |
| 16 | 17 |
| 17 namespace sync_driver { | 18 namespace sync_driver { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 44 | 45 |
| 45 // Define a factory for FakeGenericChangeProcessor for convenience. | 46 // Define a factory for FakeGenericChangeProcessor for convenience. |
| 46 class FakeGenericChangeProcessorFactory : public GenericChangeProcessorFactory { | 47 class FakeGenericChangeProcessorFactory : public GenericChangeProcessorFactory { |
| 47 public: | 48 public: |
| 48 explicit FakeGenericChangeProcessorFactory( | 49 explicit FakeGenericChangeProcessorFactory( |
| 49 std::unique_ptr<FakeGenericChangeProcessor> processor); | 50 std::unique_ptr<FakeGenericChangeProcessor> processor); |
| 50 ~FakeGenericChangeProcessorFactory() override; | 51 ~FakeGenericChangeProcessorFactory() override; |
| 51 std::unique_ptr<GenericChangeProcessor> CreateGenericChangeProcessor( | 52 std::unique_ptr<GenericChangeProcessor> CreateGenericChangeProcessor( |
| 52 syncer::ModelType type, | 53 syncer::ModelType type, |
| 53 syncer::UserShare* user_share, | 54 syncer::UserShare* user_share, |
| 54 syncer::DataTypeErrorHandler* error_handler, | 55 std::unique_ptr<syncer::DataTypeErrorHandler> error_handler, |
| 55 const base::WeakPtr<syncer::SyncableService>& local_service, | 56 const base::WeakPtr<syncer::SyncableService>& local_service, |
| 56 const base::WeakPtr<syncer::SyncMergeResult>& merge_result, | 57 const base::WeakPtr<syncer::SyncMergeResult>& merge_result, |
| 57 SyncClient* sync_client) override; | 58 SyncClient* sync_client) override; |
| 58 | 59 |
| 59 private: | 60 private: |
| 60 std::unique_ptr<FakeGenericChangeProcessor> processor_; | 61 std::unique_ptr<FakeGenericChangeProcessor> processor_; |
| 61 DISALLOW_COPY_AND_ASSIGN(FakeGenericChangeProcessorFactory); | 62 DISALLOW_COPY_AND_ASSIGN(FakeGenericChangeProcessorFactory); |
| 62 }; | 63 }; |
| 63 | 64 |
| 64 } // namespace sync_driver | 65 } // namespace sync_driver |
| 65 | 66 |
| 66 #endif // COMPONENTS_SYNC_DRIVER_FAKE_GENERIC_CHANGE_PROCESSOR_H_ | 67 #endif // COMPONENTS_SYNC_DRIVER_FAKE_GENERIC_CHANGE_PROCESSOR_H_ |
| OLD | NEW |