// 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_FEDERATED_IDENTITY_PERMISSION_CONTEXT_DELEGATE_H_ #define CONTENT_PUBLIC_BROWSER_FEDERATED_IDENTITY_PERMISSION_CONTEXT_DELEGATE_H_ #include <optional> #include <vector> #include "base/functional/callback_forward.h" #include "base/observer_list.h" #include "url/origin.h" namespace content { // Delegate interface for the FedCM implementation in content to query and // manage permission grants associated with the ability to share identity // information from a given provider to a given relying party. class FederatedIdentityPermissionContextDelegate { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_FEDERATED_IDENTITY_PERMISSION_CONTEXT_DELEGATE_H_