// Copyright 2022 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_FORWARDING_DATA_TYPE_LOCAL_CHANGE_PROCESSOR_H_ #define COMPONENTS_SYNC_TEST_FORWARDING_DATA_TYPE_LOCAL_CHANGE_PROCESSOR_H_ #include <memory> #include <string> #include <vector> #include "base/memory/raw_ptr.h" #include "components/sync/model/data_type_local_change_processor.h" namespace syncer { // A DataTypeLocalChangeProcessor implementation that forwards all calls to another // DataTypeLocalChangeProcessor instance, useful when a client wants ownership of // the processor. class ForwardingDataTypeLocalChangeProcessor : public DataTypeLocalChangeProcessor { … }; } // namespace syncer #endif // COMPONENTS_SYNC_TEST_FORWARDING_DATA_TYPE_LOCAL_CHANGE_PROCESSOR_H_