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
|
// Copyright 2025 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_CONTENT_SETTINGS_CORE_BROWSER_PERMISSION_SETTINGS_INFO_H_
#define COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_PERMISSION_SETTINGS_INFO_H_
#include <memory>
#include <set>
#include <string>
#include <vector>
#include "base/memory/raw_ptr.h"
#include "components/content_settings/core/common/content_settings.h"
namespace base {
class Value;
}
namespace content_settings {
class WebsiteSettingsInfo;
class PermissionSettingsInfo {
public:
// Implements PermissionSetting specific logic like validation, incognito
// inherince and parsing.
class Delegate {
public:
virtual ~Delegate() = default;
// Return whether the setting is valid.
virtual bool IsValid(const PermissionSetting& setting) const = 0;
// Returns a setting to inherit to incognito mode.
virtual PermissionSetting InheritInIncognito(
const PermissionSetting& setting) const = 0;
// Returns if at least some of the permission setting is allowed. Used e.g.
// to decide whether the permission setting can be auto-revoked by
// SafetyHub.
virtual bool IsAnyPermissionAllowed(PermissionSetting setting) const = 0;
// Returns true when no permission has been allowed or blocked yet.
virtual bool IsUndecided(PermissionSetting setting) const = 0;
// Returns whether the permission setting supports expiration tracking.
virtual bool CanTrackLastVisit() const = 0;
// Returns true if any existing persistent state should be coalesced with
// ephemeral state from the OneTimePermissionProvider.
virtual bool ShouldCoalesceEphemeralState() const = 0;
// Returns the coalesced PermissionSetting based on the passed in persistent
// and ephemeral state.
virtual PermissionSetting CoalesceEphemeralState(
const PermissionSetting& persistent_permission_setting,
const PermissionSetting& ephemeral_permission_setting) const;
// Parsing and conversion methods.
virtual base::Value ToValue(const PermissionSetting& setting) const = 0;
virtual std::optional<PermissionSetting> FromValue(
const base::Value& value) const = 0;
};
enum OriginRestriction {
// This flag indicates content types that only allow exceptions to be set
// on secure origins.
EXCEPTIONS_ON_SECURE_ORIGINS_ONLY,
// This flag indicates content types that allow exceptions to be set on
// secure and insecure origins.
EXCEPTIONS_ON_SECURE_AND_INSECURE_ORIGINS,
};
// This object does not take ownership of |website_settings_info|.
PermissionSettingsInfo(
const WebsiteSettingsInfo* website_settings_info,
const std::vector<std::string>& allowlisted_primary_schemes,
OriginRestriction origin_restriction,
std::unique_ptr<Delegate> delegate);
PermissionSettingsInfo(const PermissionSettingsInfo&) = delete;
PermissionSettingsInfo& operator=(const PermissionSettingsInfo&) = delete;
~PermissionSettingsInfo();
const WebsiteSettingsInfo* website_settings_info() const {
return website_settings_info_;
}
const std::vector<std::string>& allowlisted_primary_schemes() const {
return allowlisted_primary_schemes_;
}
// Gets the original default setting for a particular content type.
PermissionSetting GetInitialDefaultSetting() const;
OriginRestriction origin_restriction() const { return origin_restriction_; }
const Delegate& delegate() const { return *delegate_; }
private:
raw_ptr<const WebsiteSettingsInfo> website_settings_info_;
const std::vector<std::string> allowlisted_primary_schemes_;
const OriginRestriction origin_restriction_;
const std::unique_ptr<Delegate> delegate_;
};
} // namespace content_settings
#endif // COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_PERMISSION_SETTINGS_INFO_H_
|