#ifndef CHROME_BROWSER_WEBID_FEDERATED_IDENTITY_AUTO_REAUTHN_PERMISSION_CONTEXT_H_
#define CHROME_BROWSER_WEBID_FEDERATED_IDENTITY_AUTO_REAUTHN_PERMISSION_CONTEXT_H_
#include "components/content_settings/core/browser/host_content_settings_map.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/password_manager/core/browser/password_manager_settings_service.h"
#include "content/public/browser/federated_identity_auto_reauthn_permission_context_delegate.h"
namespace content {
class BrowserContext;
}
namespace permissions {
class PermissionDecisionAutoBlocker;
}
namespace url {
class Origin;
}
class FederatedIdentityAutoReauthnPermissionContext
: public content::FederatedIdentityAutoReauthnPermissionContextDelegate,
public KeyedService { … };
#endif