// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_SYNC_TEST_SYNC_CHANGE_PROCESSOR_WRAPPER_FOR_TEST_H_ #define COMPONENTS_SYNC_TEST_SYNC_CHANGE_PROCESSOR_WRAPPER_FOR_TEST_H_ #include "base/functional/callback.h" #include "components/sync/model/sync_change_processor.h" namespace syncer { class SyncableService; // A wrapper class for use in tests that forwards changes to a SyncableService // or a SyncChangeProcessor; class SyncChangeProcessorWrapperForTest : public SyncChangeProcessor { … }; } // namespace syncer #endif // COMPONENTS_SYNC_TEST_SYNC_CHANGE_PROCESSOR_WRAPPER_FOR_TEST_H_