#include "components/user_education/common/feature_promo_registry.h"
#include "base/containers/contains.h"
#include "base/containers/map_util.h"
#include "base/feature_list.h"
#include "components/user_education/common/feature_promo_specification.h"
#include "components/user_education/common/new_badge_specification.h"
namespace user_education {
FeaturePromoRegistry::FeaturePromoRegistry() = default;
FeaturePromoRegistry::FeaturePromoRegistry(
FeaturePromoRegistry&& other) noexcept = default;
FeaturePromoRegistry& FeaturePromoRegistry::operator=(
FeaturePromoRegistry&& other) noexcept = default;
FeaturePromoRegistry::~FeaturePromoRegistry() = default;
void FeaturePromoRegistry::RegisterFeature(FeaturePromoSpecification spec) { … }
NewBadgeRegistry::NewBadgeRegistry() = default;
NewBadgeRegistry::NewBadgeRegistry(NewBadgeRegistry&& other) noexcept = default;
NewBadgeRegistry& NewBadgeRegistry::operator=(
NewBadgeRegistry&& other) noexcept = default;
NewBadgeRegistry::~NewBadgeRegistry() = default;
void NewBadgeRegistry::RegisterFeature(NewBadgeSpecification spec) { … }
}