#ifndef COMPONENTS_SYNC_DEVICE_INFO_DEVICE_INFO_PROTO_ENUM_UTIL_H_
#define COMPONENTS_SYNC_DEVICE_INFO_DEVICE_INFO_PROTO_ENUM_UTIL_H_
#include <string>
#include "components/sync/protocol/sync_enums.pb.h"
#include "components/sync_device_info/device_info.h"
namespace syncer {
DeviceInfo::OsType DeriveOsFromDeviceType(
const sync_pb::SyncEnums_DeviceType& device_type,
const std::string& manufacturer_name);
DeviceInfo::FormFactor DeriveFormFactorFromDeviceType(
const sync_pb::SyncEnums_DeviceType& device_type);
syncer::DeviceInfo::FormFactor ToDeviceInfoFormFactor(
const sync_pb::SyncEnums_DeviceFormFactor& form_factor);
sync_pb::SyncEnums_DeviceFormFactor ToDeviceFormFactorProto(
const syncer::DeviceInfo::FormFactor& form_factor);
syncer::DeviceInfo::OsType ToDeviceInfoOsType(
const sync_pb::SyncEnums_OsType& os_type);
sync_pb::SyncEnums_OsType ToOsTypeProto(const DeviceInfo::OsType& os_type);
}
#endif