#ifndef COMPONENTS_SEGMENTATION_PLATFORM_PUBLIC_INPUT_CONTEXT_H_
#define COMPONENTS_SEGMENTATION_PLATFORM_PUBLIC_INPUT_CONTEXT_H_
#include <optional>
#include <string_view>
#include "base/containers/flat_map.h"
#include "base/memory/ref_counted.h"
#include "components/segmentation_platform/public/types/processed_value.h"
namespace base {
class Value;
}
namespace segmentation_platform {
struct InputContext : base::RefCounted<InputContext> { … };
std::ostream& operator<<(std::ostream& out, const InputContext& value);
}
#endif