chromium/components/sync/model/data_type_local_change_processor.h

// Copyright 2015 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_MODEL_DATA_TYPE_LOCAL_CHANGE_PROCESSOR_H_
#define COMPONENTS_SYNC_MODEL_DATA_TYPE_LOCAL_CHANGE_PROCESSOR_H_

#include <memory>
#include <optional>
#include <string>
#include <vector>

#include "base/memory/weak_ptr.h"
#include "base/time/time.h"
#include "components/sync/base/data_type.h"
#include "components/sync/model/data_type_controller_delegate.h"
#include "components/sync/model/model_error.h"

namespace sync_pb {
class EntitySpecifics;
class UniquePosition;
}  // namespace sync_pb

namespace syncer {

class ClientTagHash;
class DeletionOrigin;
class MetadataBatch;
class MetadataChangeList;
class DataTypeSyncBridge;
struct EntityData;

// Interface used by the DataTypeSyncBridge to inform sync of local changes.
// Lives on the model sequence.
class DataTypeLocalChangeProcessor {};

}  // namespace syncer

#endif  // COMPONENTS_SYNC_MODEL_DATA_TYPE_LOCAL_CHANGE_PROCESSOR_H_