#include "components/user_education/test/test_feature_promo_storage_service.h"
#include "components/user_education/common/feature_promo_data.h"
namespace user_education::test {
TestFeaturePromoStorageService::TestFeaturePromoStorageService() = default;
TestFeaturePromoStorageService::~TestFeaturePromoStorageService() = default;
std::optional<FeaturePromoData> TestFeaturePromoStorageService::ReadPromoData(
const base::Feature& iph_feature) const { … }
void TestFeaturePromoStorageService::SavePromoData(
const base::Feature& iph_feature,
const FeaturePromoData& promo_data) { … }
void TestFeaturePromoStorageService::Reset(const base::Feature& iph_feature) { … }
FeaturePromoSessionData TestFeaturePromoStorageService::ReadSessionData()
const { … }
void TestFeaturePromoStorageService::SaveSessionData(
const FeaturePromoSessionData& session_data) { … }
void TestFeaturePromoStorageService::ResetSession() { … }
FeaturePromoPolicyData TestFeaturePromoStorageService::ReadPolicyData() const { … }
void TestFeaturePromoStorageService::SavePolicyData(
const FeaturePromoPolicyData& policy_data) { … }
void TestFeaturePromoStorageService::ResetPolicy() { … }
user_education::NewBadgeData TestFeaturePromoStorageService::ReadNewBadgeData(
const base::Feature& new_badge_feature) const { … }
void TestFeaturePromoStorageService::SaveNewBadgeData(
const base::Feature& new_badge_feature,
const NewBadgeData& new_badge_data) { … }
void TestFeaturePromoStorageService::ResetNewBadge(
const base::Feature& new_badge_feature) { … }
}