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

#include "base/test/metrics/histogram_tester.h"
#include "base/test/scoped_feature_list.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/privacy_sandbox/privacy_sandbox_countries_impl.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "components/privacy_sandbox/privacy_sandbox_features.h"
#include "components/variations/service/variations_service.h"
#include "content/public/test/browser_test.h"

namespace privacy_sandbox {
namespace {

struct PrivacySandboxCountriesTestData {};

class PrivacySandboxCountriesBrowserTest
    : public InProcessBrowserTest,
      public testing::WithParamInterface<PrivacySandboxCountriesTestData> {};

IN_PROC_BROWSER_TEST_P(PrivacySandboxCountriesBrowserTest, ConsentCountryTest) {}

INSTANTIATE_TEST_SUITE_P();

}  // namespace
}  // namespace privacy_sandbox