chromium/components/segmentation_platform/embedder/home_modules/card_selection_signals.h

// Copyright 2024 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_SEGMENTATION_PLATFORM_EMBEDDER_HOME_MODULES_CARD_SELECTION_SIGNALS_H_
#define COMPONENTS_SEGMENTATION_PLATFORM_EMBEDDER_HOME_MODULES_CARD_SELECTION_SIGNALS_H_

#include <cstddef>
#include <map>
#include <optional>
#include <string>
#include <vector>

#include "base/memory/raw_ptr.h"

namespace segmentation_platform::home_modules {

SignalKey;
CardName;

// Where the position of the card should be placed.
enum class EphemeralHomeModuleRank {};

float EphemeralHomeModuleRankToScore(EphemeralHomeModuleRank rank);

CardSignalMap;

// Holds all signals of all the cards in the registry, and a key to fetch each
// card's signal.
struct AllCardSignals {};

// Provides the signals needed by each card.
class CardSelectionSignals {};

}  // namespace segmentation_platform::home_modules

#endif  // COMPONENTS_SEGMENTATION_PLATFORM_EMBEDDER_HOME_MODULES_CARD_SELECTION_SIGNALS_H_