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

content / public / browser / interest_group_manager.h [blame]

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONTENT_PUBLIC_BROWSER_INTEREST_GROUP_MANAGER_H_
#define CONTENT_PUBLIC_BROWSER_INTEREST_GROUP_MANAGER_H_

#include "base/functional/callback_forward.h"
#include "content/common/content_export.h"
#include "url/origin.h"

namespace content {

// InterestGroupManager is a per-StoragePartition class that owns shared
// state needed to run FLEDGE auctions. It lives on the UI thread.
class InterestGroupManager {
 public:
  struct InterestGroupDataKey {
    url::Origin owner;
    url::Origin joining_origin;

    bool operator<(const InterestGroupDataKey& other) const {
      return std::tie(owner, joining_origin) <
             std::tie(other.owner, other.joining_origin);
    }

    bool operator==(const InterestGroupDataKey& other) const {
      return std::tie(owner, joining_origin) ==
             std::tie(other.owner, other.joining_origin);
    }
  };

  // Gets a list of all interest group joining origins. Each joining origin
  // will only appear once. A joining origin is the top-frame origin for a page
  // on which the join action occurred. Interest groups the user is joined to
  // can be used later as part of on device ad auctions. Control over whether
  // sites can join clients to interest groups is provided by the
  // IsInterestGroupAPIAllowed function on the ContentBrowserClient.
  virtual void GetAllInterestGroupJoiningOrigins(
      base::OnceCallback<void(std::vector<url::Origin>)> callback) = 0;

  // Gets a list of all interest group data keys of owner origin and joining
  // origin pairs.
  virtual void GetAllInterestGroupDataKeys(
      base::OnceCallback<void(std::vector<InterestGroupDataKey>)> callback) = 0;

  // Removes all interest groups that match the given interest group data key of
  // same owner origin and joining origins.
  virtual void RemoveInterestGroupsByDataKey(InterestGroupDataKey data_key,
                                             base::OnceClosure callback) = 0;

 protected:
  virtual ~InterestGroupManager() = default;
};

}  // namespace content

#endif  // CONTENT_PUBLIC_BROWSER_INTEREST_GROUP_MANAGER_H_