chromium/components/sync/nigori/nigori_data_type_processor.h

// Copyright 2019 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_NIGORI_NIGORI_DATA_TYPE_PROCESSOR_H_
#define COMPONENTS_SYNC_NIGORI_NIGORI_DATA_TYPE_PROCESSOR_H_

#include <memory>
#include <utility>
#include <vector>

#include "base/memory/raw_ptr.h"
#include "components/sync/engine/data_type_processor.h"
#include "components/sync/model/data_type_activation_request.h"
#include "components/sync/model/data_type_controller_delegate.h"
#include "components/sync/nigori/nigori_local_change_processor.h"

namespace syncer {

class NigoriSyncBridge;
class ProcessorEntity;

class NigoriDataTypeProcessor : public DataTypeProcessor,
                                 public DataTypeControllerDelegate,
                                 public NigoriLocalChangeProcessor {};

}  // namespace syncer

#endif  // COMPONENTS_SYNC_NIGORI_NIGORI_DATA_TYPE_PROCESSOR_H_