| 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_SHARED_CHANGE_PROCESSOR_REF_H_ | 5 #ifndef COMPONENTS_SYNC_DRIVER_SHARED_CHANGE_PROCESSOR_REF_H_ |
| 6 #define COMPONENTS_SYNC_DRIVER_SHARED_CHANGE_PROCESSOR_REF_H_ | 6 #define COMPONENTS_SYNC_DRIVER_SHARED_CHANGE_PROCESSOR_REF_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "components/sync/api/sync_change_processor.h" | |
| 13 #include "components/sync/api/sync_error_factory.h" | |
| 14 #include "components/sync/driver/shared_change_processor.h" | 12 #include "components/sync/driver/shared_change_processor.h" |
| 13 #include "components/sync/model/sync_change_processor.h" |
| 14 #include "components/sync/model/sync_error_factory.h" |
| 15 | 15 |
| 16 namespace syncer { | 16 namespace syncer { |
| 17 | 17 |
| 18 // A SyncChangeProcessor stub for interacting with a refcounted | 18 // A SyncChangeProcessor stub for interacting with a refcounted |
| 19 // SharedChangeProcessor. | 19 // SharedChangeProcessor. |
| 20 class SharedChangeProcessorRef : public SyncChangeProcessor, | 20 class SharedChangeProcessorRef : public SyncChangeProcessor, |
| 21 public SyncErrorFactory { | 21 public SyncErrorFactory { |
| 22 public: | 22 public: |
| 23 SharedChangeProcessorRef( | 23 SharedChangeProcessorRef( |
| 24 const scoped_refptr<SharedChangeProcessor>& change_processor); | 24 const scoped_refptr<SharedChangeProcessor>& change_processor); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 41 | 41 |
| 42 // Default copy and assign welcome (and safe due to refcounted-ness). | 42 // Default copy and assign welcome (and safe due to refcounted-ness). |
| 43 | 43 |
| 44 private: | 44 private: |
| 45 scoped_refptr<SharedChangeProcessor> change_processor_; | 45 scoped_refptr<SharedChangeProcessor> change_processor_; |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 } // namespace syncer | 48 } // namespace syncer |
| 49 | 49 |
| 50 #endif // COMPONENTS_SYNC_DRIVER_SHARED_CHANGE_PROCESSOR_REF_H_ | 50 #endif // COMPONENTS_SYNC_DRIVER_SHARED_CHANGE_PROCESSOR_REF_H_ |
| OLD | NEW |