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
|
// 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.
#include "content/browser/attribution_reporting/attribution_os_level_manager.h"
#include <optional>
#include <utility>
#include <vector>
#include "base/dcheck_is_on.h"
#include "base/functional/callback.h"
#include "base/metrics/histogram_functions.h"
#include "base/no_destructor.h"
#include "base/sequence_checker.h"
#include "base/time/time.h"
#include "components/attribution_reporting/os_registration.h"
#include "content/browser/attribution_reporting/os_registration.h"
#include "content/browser/web_contents/web_contents_impl.h"
#include "content/public/browser/content_browser_client.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/content_client.h"
namespace content {
namespace {
using ScopedApiStateForTesting =
::content::AttributionOsLevelManager::ScopedApiStateForTesting;
using ApiState = AttributionOsLevelManager::ApiState;
#if DCHECK_IS_ON()
const base::SequenceChecker& GetSequenceChecker() {
static base::NoDestructor<base::SequenceChecker> checker;
return *checker;
}
#endif
// This flag is per device and can only be changed by the OS. Currently we don't
// observe setting changes on the device and the flag is only initialized once
// on startup. The value may vary in tests.
std::optional<ApiState> g_state GUARDED_BY_CONTEXT(GetSequenceChecker());
} // namespace
// static
bool AttributionOsLevelManager::ShouldInitializeApiState() {
DCHECK_CALLED_ON_VALID_SEQUENCE(GetSequenceChecker());
if (g_state.has_value()) {
return false;
}
g_state.emplace(ApiState::kDisabled);
return true;
}
// static
ApiState AttributionOsLevelManager::GetApiState() {
DCHECK_CALLED_ON_VALID_SEQUENCE(GetSequenceChecker());
return g_state.value_or(ApiState::kDisabled);
}
// static
void AttributionOsLevelManager::SetApiState(std::optional<ApiState> state) {
DCHECK_CALLED_ON_VALID_SEQUENCE(GetSequenceChecker());
ApiState old_state = GetApiState();
g_state = state;
ApiState new_state = GetApiState();
base::UmaHistogramEnumeration("Conversions.AttributionOsLevelApiState",
new_state);
if (old_state == new_state) {
return;
}
WebContentsImpl::UpdateAttributionSupportAllRenderers();
}
// static
ContentBrowserClient::AttributionReportingOsRegistrars
AttributionOsLevelManager::GetAttributionReportingOsRegistrars(
WebContents* web_contents) {
return GetContentClient()->browser()->GetAttributionReportingOsRegistrars(
web_contents);
}
ScopedApiStateForTesting::ScopedApiStateForTesting(
std::optional<ApiState> state)
: previous_(g_state) {
SetApiState(state);
}
ScopedApiStateForTesting::~ScopedApiStateForTesting() {
SetApiState(previous_);
}
NoOpAttributionOsLevelManager::~NoOpAttributionOsLevelManager() = default;
void NoOpAttributionOsLevelManager::Register(
OsRegistration registration,
const std::vector<bool>& is_debug_key_allowed,
RegisterCallback callback) {
std::move(callback).Run(
registration, std::vector<bool>(registration.registration_items.size()));
}
void NoOpAttributionOsLevelManager::ClearData(
base::Time delete_begin,
base::Time delete_end,
const std::set<url::Origin>& origins,
const std::set<std::string>& domains,
BrowsingDataFilterBuilder::Mode mode,
bool delete_rate_limit_data,
base::OnceClosure done) {
std::move(done).Run();
}
} // namespace content
|