chromium/components/privacy_sandbox/privacy_sandbox_survey_service.cc

// 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.

#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 {

// Cooldown period before we can show a profile another sentiment survey.
constexpr base::TimeDelta kMinimumTimeBetweenSentimentSurveys =;

bool IsSentimentSurveyOnCooldown(PrefService* pref_service) {}

}  // namespace

PrivacySandboxSurveyService::PrivacySandboxSurveyService(
    PrefService* pref_service)
    :{}

PrivacySandboxSurveyService::~PrivacySandboxSurveyService() = default;

bool PrivacySandboxSurveyService::ShouldShowSentimentSurvey() {}

void PrivacySandboxSurveyService::OnSuccessfulSentimentSurvey() {}

}  // namespace privacy_sandbox