| 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 SYNC_API_SYNC_CHANGE_PROCESSOR_WRAPPER_FOR_TEST_H_ | 5 #ifndef SYNC_API_SYNC_CHANGE_PROCESSOR_WRAPPER_FOR_TEST_H_ |
| 6 #define SYNC_API_SYNC_CHANGE_PROCESSOR_WRAPPER_FOR_TEST_H_ | 6 #define SYNC_API_SYNC_CHANGE_PROCESSOR_WRAPPER_FOR_TEST_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" |
| 8 #include "sync/api/sync_change_processor.h" | 9 #include "sync/api/sync_change_processor.h" |
| 9 | 10 |
| 10 namespace syncer { | 11 namespace syncer { |
| 11 | 12 |
| 12 // A wrapper class for use in tests. | 13 // A wrapper class for use in tests. |
| 13 class SyncChangeProcessorWrapperForTest : public SyncChangeProcessor { | 14 class SyncChangeProcessorWrapperForTest : public SyncChangeProcessor { |
| 14 public: | 15 public: |
| 15 // Create a SyncChangeProcessorWrapperForTest. | 16 // Create a SyncChangeProcessorWrapperForTest. |
| 16 // | 17 // |
| 17 // All method calls are forwarded to |wrapped|. Caller maintains ownership | 18 // All method calls are forwarded to |wrapped|. Caller maintains ownership |
| (...skipping 10 matching lines...) Expand all Loading... |
| 28 | 29 |
| 29 private: | 30 private: |
| 30 syncer::SyncChangeProcessor* const wrapped_; | 31 syncer::SyncChangeProcessor* const wrapped_; |
| 31 | 32 |
| 32 DISALLOW_COPY_AND_ASSIGN(SyncChangeProcessorWrapperForTest); | 33 DISALLOW_COPY_AND_ASSIGN(SyncChangeProcessorWrapperForTest); |
| 33 }; | 34 }; |
| 34 | 35 |
| 35 } // namespace syncer | 36 } // namespace syncer |
| 36 | 37 |
| 37 #endif // SYNC_API_SYNC_CHANGE_PROCESSOR_WRAPPER_FOR_TEST_H_ | 38 #endif // SYNC_API_SYNC_CHANGE_PROCESSOR_WRAPPER_FOR_TEST_H_ |
| OLD | NEW |