#ifndef COMPONENTS_SEGMENTATION_PLATFORM_INTERNAL_MIGRATION_RESULT_MIGRATION_UTILS_H_
#define COMPONENTS_SEGMENTATION_PLATFORM_INTERNAL_MIGRATION_RESULT_MIGRATION_UTILS_H_
#include "components/segmentation_platform/internal/proto/client_results.pb.h"
#include "components/segmentation_platform/internal/selection/segmentation_result_prefs.h"
#include "components/segmentation_platform/public/config.h"
namespace segmentation_platform {
struct Config;
namespace pref_migration_utils {
proto::ClientResult CreateClientResultFromOldResult(
Config* config,
const SelectedSegment& old_result);
proto::Predictor::PredictorTypeCase GetClassifierTypeForMigration(
const std::string& segmentation_key);
}
}
#endif