chromium/components/sync/service/data_type_controller.h

// 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_SERVICE_DATA_TYPE_CONTROLLER_H_
#define COMPONENTS_SYNC_SERVICE_DATA_TYPE_CONTROLLER_H_

#include <map>
#include <memory>
#include <string>
#include <vector>

#include "base/containers/flat_map.h"
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/sequence_checker.h"
#include "base/values.h"
#include "components/sync/base/data_type.h"
#include "components/sync/base/sync_mode.h"
#include "components/sync/base/sync_stop_metadata_fate.h"
#include "components/sync/model/data_type_controller_delegate.h"
#include "components/sync/model/model_error.h"
#include "components/sync/model/sync_error.h"
#include "components/sync/service/configure_context.h"
#include "components/sync/service/data_type_local_data_batch_uploader.h"

namespace syncer {

struct ConfigureContext;
struct DataTypeActivationResponse;
struct TypeEntitiesCount;
class SyncError;

// DataTypeController are responsible for managing the state of a single data
// type. They are not thread safe and should only be used on the UI thread.
class DataTypeController {};

}  // namespace syncer

#endif  // COMPONENTS_SYNC_SERVICE_DATA_TYPE_CONTROLLER_H_