#include "chrome/browser/privacy_sandbox/tracking_protection_settings_factory.h"
#include "base/metrics/histogram_functions.h"
#include "base/no_destructor.h"
#include "chrome/browser/content_settings/host_content_settings_map_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profiles_state.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/prefs/pref_service.h"
#include "components/privacy_sandbox/privacy_sandbox_features.h"
#include "components/privacy_sandbox/tracking_protection_prefs.h"
#include "components/privacy_sandbox/tracking_protection_settings.h"
TrackingProtectionSettingsFactory*
TrackingProtectionSettingsFactory::GetInstance() { … }
privacy_sandbox::TrackingProtectionSettings*
TrackingProtectionSettingsFactory::GetForProfile(Profile* profile) { … }
TrackingProtectionSettingsFactory::TrackingProtectionSettingsFactory()
: … { … }
std::unique_ptr<KeyedService>
TrackingProtectionSettingsFactory::BuildServiceInstanceForBrowserContext(
content::BrowserContext* context) const { … }