#include "privacy_sandbox_survey_service.h"
#include "base/feature_list.h"
#include "components/privacy_sandbox/privacy_sandbox_features.h"
#include "privacy_sandbox_prefs.h"
namespace privacy_sandbox {
namespace {
constexpr base::TimeDelta kMinimumTimeBetweenSentimentSurveys = …;
bool IsSentimentSurveyOnCooldown(PrefService* pref_service) { … }
}
PrivacySandboxSurveyService::PrivacySandboxSurveyService(
PrefService* pref_service)
: … { … }
PrivacySandboxSurveyService::~PrivacySandboxSurveyService() = default;
bool PrivacySandboxSurveyService::ShouldShowSentimentSurvey() { … }
void PrivacySandboxSurveyService::OnSuccessfulSentimentSurvey() { … }
}