#ifndef COMPONENTS_SYNC_TEST_FAKE_DATA_TYPE_SYNC_BRIDGE_H_
#define COMPONENTS_SYNC_TEST_FAKE_DATA_TYPE_SYNC_BRIDGE_H_
#include <map>
#include <memory>
#include <optional>
#include <set>
#include <string>
#include <unordered_set>
#include "base/functional/callback_forward.h"
#include "components/sync/model/data_type_local_change_processor.h"
#include "components/sync/model/data_type_sync_bridge.h"
#include "components/sync/model/model_error.h"
#include "components/sync/protocol/data_type_state.pb.h"
#include "components/sync/protocol/unique_position.pb.h"
namespace sync_pb {
class EntityMetadata;
class EntitySpecifics;
}
namespace syncer {
class MetadataBatch;
struct EntityData;
class FakeDataTypeSyncBridge : public DataTypeSyncBridge { … };
}
#endif