chromium/chrome/browser/privacy_sandbox/privacy_sandbox_countries_impl.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 "chrome/browser/privacy_sandbox/privacy_sandbox_countries_impl.h"

#include "base/containers/fixed_flat_set.h"
#include "base/metrics/histogram_functions.h"
#include "chrome/browser/browser_process.h"
#include "components/privacy_sandbox/privacy_sandbox_features.h"
#include "components/variations/service/variations_service.h"

namespace {

/**
 * Retrieves the user's country code.
 *
 * Prioritizes the country code from the variations service if available.
 * Otherwise returns an empty string.
 *
 */
std::string GetCountry(variations::VariationsService* variations_service) {}

constexpr auto kPrivacySandboxConsentCountries =;

}  // namespace

bool PrivacySandboxCountriesImpl::IsConsentCountry() {}

bool PrivacySandboxCountriesImpl::IsRestOfWorldCountry() {}