1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_PRIVACY_SANDBOX_PRIVACY_SANDBOX_SERVICE_H_
#define CHROME_BROWSER_PRIVACY_SANDBOX_PRIVACY_SANDBOX_SERVICE_H_
#include <set>
#include "base/gtest_prod_util.h"
#include "base/memory/raw_ptr.h"
#include "chrome/browser/first_party_sets/first_party_sets_policy_service.h"
#include "chrome/browser/privacy_sandbox/privacy_sandbox_countries.h"
#include "components/content_settings/core/browser/host_content_settings_map.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/prefs/pref_change_registrar.h"
#include "components/privacy_sandbox/canonical_topic.h"
#include "components/privacy_sandbox/privacy_sandbox_prefs.h"
#include "components/privacy_sandbox/privacy_sandbox_settings.h"
#include "components/profile_metrics/browser_profile_type.h"
#include "components/user_education/common/product_messaging_controller.h"
#include "content/public/browser/interest_group_manager.h"
#include "net/base/schemeful_site.h"
class BrowserWindowInterface;
namespace views {
class Widget;
}
namespace privacy_sandbox {
class PrivacySandboxQueueManager;
}
// Service which encapsulates logic related to displaying and controlling the
// users Privacy Sandbox settings. This service contains the chrome/ specific
// logic used by the UI, including decision making around what the users'
// Privacy Sandbox settings should be based on their existing settings.
// Ultimately the decisions made by this service are consumed (through
// preferences and content settings) by the PrivacySandboxSettings located in
// components/privacy_sandbox/, which in turn makes them available to Privacy
// Sandbox APIs.
class PrivacySandboxService : public KeyedService {
public:
// Possible types of Privacy Sandbox prompts that may be shown to the user.
// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.chrome.browser.privacy_sandbox
enum class PromptType {
kNone = 0,
kM1Consent = 1,
kM1NoticeROW = 2,
kM1NoticeEEA = 3,
kM1NoticeRestricted = 4,
kMaxValue = kM1NoticeRestricted,
};
// A list of the client surfaces we show consents / notices on.
// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.chrome.browser.privacy_sandbox
enum class SurfaceType {
kDesktop = 0,
kBrApp = 1,
kAGACCT = 2,
kMaxValue = kAGACCT,
};
// An exhaustive list of actions related to showing & interacting with the
// prompt. Includes actions which do not impact consent / notice state.
// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.chrome.browser.privacy_sandbox
enum class PromptAction {
// Notice Interactions:
kNoticeShown = 0,
kNoticeOpenSettings = 1,
kNoticeAcknowledge = 2,
kNoticeDismiss = 3,
// Implies that the browser, or browser window, was shut before the user
// interacted with the notice.
kNoticeClosedNoInteraction = 4,
// Consent Interactions:
kConsentShown = 5,
kConsentAccepted = 6,
kConsentDeclined = 7,
kConsentMoreInfoOpened = 8,
kConsentMoreInfoClosed = 9,
// Implies that the browser, or browser window, was shut before the user
// has made the decision (accepted or declined the consent).
kConsentClosedNoDecision = 10,
// TODO(crbug.com/386240885): Clean up old learn more, as it is not used for
// any of the Privacy Sandbox Dialogs anymore.
// Interaction with notice bubble: click on the link to open interests
// settings.
kNoticeLearnMore = 11,
// Interactions with M1 Notice ROW prompt and M1 Notice EEA prompt.
kNoticeMoreInfoOpened = 12,
kNoticeMoreInfoClosed = 13,
// The button is shown only when the prompt content isn't fully visible.
kConsentMoreButtonClicked = 14,
kNoticeMoreButtonClicked = 15,
// Restricted notice interactions
kRestrictedNoticeAcknowledge = 16,
kRestrictedNoticeOpenSettings = 17,
kRestrictedNoticeShown = 18,
kRestrictedNoticeClosedNoInteraction = 19,
kRestrictedNoticeMoreButtonClicked = 20,
// Privacy policy interactions
kPrivacyPolicyLinkClicked = 21,
// Interactions with M1 Notice EEA Prompt. This is in relation to Ads API UX
// Enhancement splitting the more info into two different sections.
kNoticeSiteSuggestedAdsMoreInfoOpened = 22,
kNoticeSiteSuggestedAdsMoreInfoClosed = 23,
kNoticeAdsMeasurementMoreInfoOpened = 24,
kNoticeAdsMeasurementMoreInfoClosed = 25,
kMaxValue = kNoticeAdsMeasurementMoreInfoClosed,
};
// If during the trials a previous consent decision was made, or the notice
// was already acknowledged, and the privacy sandbox is disabled,
// `prefs::kPrivacySandboxM1PromptSuppressed` was set to either
// `kTrialsConsentDeclined` or `kTrialsDisabledAfterNotice` accordingly and
// the prompt is suppressed. This logic is now deprecated after launching GA.
enum class PromptSuppressedReason {
// Prompt has never been suppressed
kNone = 0,
// User had the Privacy Sandbox restricted at confirmation
kRestricted = 1,
// User was blocking 3PC when we attempted consent
kThirdPartyCookiesBlocked = 2,
// User declined the trials consent
kTrialsConsentDeclined = 3,
// User saw trials notice, and then disabled trials
kTrialsDisabledAfterNotice = 4,
// A policy is suppressing any prompt
kPolicy = 5,
// User migrated from EEA to ROW, and had already previously finished the
// EEA consent flow.
kEEAFlowCompletedBeforeRowMigration = 6,
// User migrated from ROW to EEA, but had already disabled Topics from
// settings.
kROWFlowCompletedAndTopicsDisabledBeforeEEAMigration = 7,
// The user is restricted with a guardian, so a direct notice is shown.
kNoticeShownToGuardian = 8,
kMaxValue = kNoticeShownToGuardian,
};
// Contains the possible states of the prompt start up states for m1.
// LINT.IfChange(SettingsPrivacySandboxPromptStartupState)
enum class PromptStartupState {
kEEAConsentPromptWaiting = 0,
kEEANoticePromptWaiting = 1,
kROWNoticePromptWaiting = 2,
kEEAFlowCompletedWithTopicsAccepted = 3,
kEEAFlowCompletedWithTopicsDeclined = 4,
kROWNoticeFlowCompleted = 5,
kPromptNotShownDueToPrivacySandboxRestricted = 6,
kPromptNotShownDueTo3PCBlocked = 7,
kPromptNotShownDueToTrialConsentDeclined = 8,
kPromptNotShownDueToTrialsDisabledAfterNoticeShown = 9,
kPromptNotShownDueToManagedState = 10,
kRestrictedNoticeNotShownDueToNoticeShownToGuardian = 11,
kRestrictedNoticePromptWaiting = 12,
kRestrictedNoticeFlowCompleted = 13,
kRestrictedNoticeNotShownDueToFullNoticeAcknowledged = 14,
kWaitingForGraduationRestrictedNoticeFlowNotCompleted = 15,
kWaitingForGraduationRestrictedNoticeFlowCompleted = 16,
kMaxValue = kWaitingForGraduationRestrictedNoticeFlowCompleted,
};
// LINT.ThenChange(//tools/metrics/histograms/metadata/settings/enums.xml:SettingsPrivacySandboxPromptStartupState)
// Enum for the different events that can be triggered from the
// PrivacySandboxApis Dialog. It used to bubble up some Dialog events to other
// components.
enum class AdsDialogCallbackNoArgsEvents {
kShowDialog,
kCloseDialog,
kOpenAdsPrivacySettings,
kOpenMeasurementSettings,
};
// Returns the prompt type that should be shown to the user. This consults
// previous consent / notice information stored in preferences, the
// current state of the Privacy Sandbox settings, and the current location
// of the user, to determine the appropriate type. This is expected to be
// called by UI code locations determining whether a prompt should be
// shown on startup.
virtual PromptType GetRequiredPromptType(SurfaceType surface_type) = 0;
// Informs the service that |action| occurred with the prompt. This allows
// the service to record this information in preferences such that future
// calls to GetRequiredPromptType() are correct. This is expected to be
// called appropriately by all locations showing the prompt. Metrics
// shared between platforms will also be recorded.
virtual void PromptActionOccurred(PromptAction action,
SurfaceType surface_type) = 0;
// Functions for coordinating the display of the Privacy Sandbox prompts
// across multiple browser windows. Only relevant for Desktop.
#if !BUILDFLAG(IS_ANDROID)
// Informs the service that a Privacy Sandbox prompt has been opened
// or closed for |browser|.
virtual void PromptOpenedForBrowser(BrowserWindowInterface* browser,
views::Widget* widget) = 0;
virtual void PromptClosedForBrowser(BrowserWindowInterface* browser) = 0;
// Returns whether a Privacy Sandbox prompt is currently open for |browser|.
virtual bool IsPromptOpenForBrowser(BrowserWindowInterface* browser) = 0;
virtual privacy_sandbox::PrivacySandboxQueueManager&
GetPrivacySandboxNoticeQueueManager() = 0;
#endif // !BUILDFLAG(IS_ANDROID)
// If set to true, this treats the testing environment as that of a branded
// Chrome build.
virtual void ForceChromeBuildForTests(bool force_chrome_build) = 0;
// Returns whether the Privacy Sandbox is currently restricted for the
// profile. UI code should consult this to ensure that when restricted,
// Privacy Sandbox related UI is updated appropriately.
virtual bool IsPrivacySandboxRestricted() = 0;
// Returns whether the Privacy Sandbox is configured to show a restricted
// notice.
virtual bool IsRestrictedNoticeEnabled() = 0;
// Toggles the RelatedWebsiteSets preference.
virtual void SetRelatedWebsiteSetsDataAccessEnabled(bool enabled) = 0;
// Returns whether the RelatedWebsiteSets preference is enabled.
virtual bool IsRelatedWebsiteSetsDataAccessEnabled() const = 0;
// Returns whether the RelatedWebsiteSets preference is managed.
virtual bool IsRelatedWebsiteSetsDataAccessManaged() const = 0;
// Returns the owner domain of the related website set that `site_url` is a
// member of, or std::nullopt if `site_url` is not recognised as a member of
// an RWS. Encapsulates logic about whether RWS information should be shown,
// if it should not, std::nullopt is always returned. Virtual for mocking in
// tests.
virtual std::optional<net::SchemefulSite> GetRelatedWebsiteSetOwner(
const GURL& site_url) const = 0;
// Same as GetRelatedWebsiteSetOwner but returns a formatted string.
virtual std::optional<std::u16string> GetRelatedWebsiteSetOwnerForDisplay(
const GURL& site_url) const = 0;
// Returns true if `site`'s membership in an RWS is being managed by policy or
// if RelatedWebsiteSets preference is managed. Virtual for mocking in tests.
//
// Note: Enterprises can use the Related Website Set Overrides policy to
// either add or remove a site from a Related Website Set. This method returns
// true only if `site` is being added into a Related Website Set since there's
// no UI use for whether `site` is being removed by an enterprise yet.
virtual bool IsPartOfManagedRelatedWebsiteSet(
const net::SchemefulSite& site) const = 0;
// Returns the set of eTLD + 1's on which the user was joined to a FLEDGE
// interest group. Consults with the InterestGroupManager associated with
// |profile_| and formats the returned data for direct display to the user.
virtual void GetFledgeJoiningEtldPlusOneForDisplay(
base::OnceCallback<void(std::vector<std::string>)> callback) = 0;
// Returns the set of top frames which are blocked from joining the profile to
// an interest group.
virtual std::vector<std::string> GetBlockedFledgeJoiningTopFramesForDisplay()
const = 0;
// Sets Fledge interest group joining to |allowed| for |top_frame_etld_plus1|.
// Forwards the setting to the PrivacySandboxSettings service, but also
// removes any Fledge data for the |top_frame_etld_plus1| if |allowed| is
// false.
virtual void SetFledgeJoiningAllowed(const std::string& top_frame_etld_plus1,
bool allowed) const = 0;
// Returns the top topics for the previous N epochs.
// Virtual for mocking in tests.
virtual std::vector<privacy_sandbox::CanonicalTopic> GetCurrentTopTopics()
const = 0;
// Returns the set of topics which have been blocked by the user.
// Virtual for mocking in tests.
virtual std::vector<privacy_sandbox::CanonicalTopic> GetBlockedTopics()
const = 0;
// Returns the first level topic: they are the root topics, meaning that they
// have no parent.
virtual std::vector<privacy_sandbox::CanonicalTopic> GetFirstLevelTopics()
const = 0;
// Returns the list of assigned children topics (direct or indirect) of the
// passed-in topic.
virtual std::vector<privacy_sandbox::CanonicalTopic>
GetChildTopicsCurrentlyAssigned(
const privacy_sandbox::CanonicalTopic& topic) const = 0;
// Sets a |topic_id|, as both a top topic and topic provided to the web, to be
// allowed/blocked based on the value of |allowed|. This is stored to
// preferences and made available to the Topics API via the
// PrivacySandboxSettings class. This function expects that |topic| will have
// previously been provided by one of the above functions. Virtual for mocking
// in tests.
virtual void SetTopicAllowed(privacy_sandbox::CanonicalTopic topic,
bool allowed) = 0;
// Determines whether the Topics API step should be shown in the Privacy
// Guide.
virtual bool PrivacySandboxPrivacyGuideShouldShowAdTopicsCard() = 0;
// Determines whether the China domain should be used for the Privacy Policy
// page.
virtual bool ShouldUsePrivacyPolicyChinaDomain() = 0;
// Inform the service that the user changed the Topics toggle in settings,
// so that the current topics consent information can be updated.
// This is not fired for changes to the preference for policy or extensions,
// and so consent information only represents direct user actions. Note that
// extensions and policy can only _disable_ topics, and so cannot bypass the
// need for user consent where required.
// Virtual for mocking in tests.
virtual void TopicsToggleChanged(bool new_value) const = 0;
// Whether the current profile requires consent for Topics to operate.
virtual bool TopicsConsentRequired() = 0;
// Whether there is an active consent for Topics currently recorded.
virtual bool TopicsHasActiveConsent() const = 0;
// Functions which returns the details of the currently recorded Topics
// consent.
virtual privacy_sandbox::TopicsConsentUpdateSource
TopicsConsentLastUpdateSource() const = 0;
virtual base::Time TopicsConsentLastUpdateTime() const = 0;
virtual std::string TopicsConsentLastUpdateText() const = 0;
// Notice Framework Result Callbacks.
virtual void UpdateTopicsApiResult(bool value) = 0;
virtual void UpdateProtectedAudienceApiResult(bool value) = 0;
virtual void UpdateMeasurementApiResult(bool value) = 0;
};
#endif // CHROME_BROWSER_PRIVACY_SANDBOX_PRIVACY_SANDBOX_SERVICE_H_
|