#ifndef COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_STATEFUL_SSL_HOST_STATE_DELEGATE_H_
#define COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_STATEFUL_SSL_HOST_STATE_DELEGATE_H_
#include <memory>
#include <set>
#include <string>
#include "base/memory/raw_ptr.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/security_interstitials/core/https_only_mode_allowlist.h"
#include "components/security_interstitials/core/https_only_mode_enforcelist.h"
#include "content/public/browser/ssl_host_state_delegate.h"
#include "url/gurl.h"
class HostContentSettingsMap;
class PrefService;
namespace base {
class Clock;
class Value;
class FilePath;
}
namespace content {
class BrowserContext;
class StoragePartition;
}
namespace user_prefs {
class PrefRegistrySyncable;
}
class StatefulSSLHostStateDelegate : public content::SSLHostStateDelegate,
public KeyedService { … };
#endif