| // Copyright 2023 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef COMPONENTS_PRIVACY_SANDBOX_TRACKING_PROTECTION_SETTINGS_H_ |
| #define COMPONENTS_PRIVACY_SANDBOX_TRACKING_PROTECTION_SETTINGS_H_ |
| |
| #include "base/memory/raw_ptr.h" |
| #include "base/observer_list.h" |
| #include "components/content_settings/core/common/content_settings.h" |
| #include "components/content_settings/core/common/cookie_controls_state.h" |
| #include "components/keyed_service/core/keyed_service.h" |
| #include "components/prefs/pref_change_registrar.h" |
| #include "components/privacy_sandbox/tracking_protection_prefs.h" |
| |
| class PrefService; |
| |
| namespace syncer { |
| class SyncService; |
| } // namespace syncer |
| |
| namespace privacy_sandbox { |
| |
| class TrackingProtectionSettingsObserver; |
| |
| // Attempts to set prefs in order to roll back Mode B. |
| void MaybeSetRollbackPrefsModeB(syncer::SyncService* sync_service, |
| PrefService* prefs); |
| |
| // A service which provides an interface for observing and reading tracking |
| // protection settings. |
| class TrackingProtectionSettings : public KeyedService { |
| public: |
| explicit TrackingProtectionSettings( |
| PrefService* pref_service, |
| bool is_incognito); |
| ~TrackingProtectionSettings() override; |
| |
| // KeyedService: |
| void Shutdown() override; |
| |
| void AddObserver(TrackingProtectionSettingsObserver* observer); |
| void RemoveObserver(TrackingProtectionSettingsObserver* observer); |
| |
| // Returns whether tracking protection for 3PCD (prefs + UX) is enabled. |
| bool IsTrackingProtection3pcdEnabled() const; |
| |
| // Returns whether tracking protection 3PCD is enabled and all 3PC are blocked |
| // (i.e. without mitigations). |
| bool AreAllThirdPartyCookiesBlocked() const; |
| |
| private: |
| // Callbacks for pref observation. |
| void OnBlockAllThirdPartyCookiesPrefChanged(); |
| void OnTrackingProtection3pcdPrefChanged(); |
| |
| base::ObserverList<TrackingProtectionSettingsObserver>::Unchecked observers_; |
| PrefChangeRegistrar pref_change_registrar_; |
| raw_ptr<PrefService> pref_service_; |
| |
| bool is_incognito_; |
| }; |
| |
| } // namespace privacy_sandbox |
| |
| #endif // COMPONENTS_PRIVACY_SANDBOX_TRACKING_PROTECTION_SETTINGS_H_ |