// Copyright 2016 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_ENGINE_DATA_TYPE_PROCESSOR_PROXY_H_ #define COMPONENTS_SYNC_ENGINE_DATA_TYPE_PROCESSOR_PROXY_H_ #include <memory> #include <vector> #include "base/memory/ref_counted.h" #include "base/memory/weak_ptr.h" #include "base/task/sequenced_task_runner.h" #include "components/sync/engine/data_type_processor.h" namespace syncer { class DataTypeProcessorProxy : public DataTypeProcessor { … }; } // namespace syncer #endif // COMPONENTS_SYNC_ENGINE_DATA_TYPE_PROCESSOR_PROXY_H_