#ifndef CHROME_BROWSER_SSL_KNOWN_INTERCEPTION_DISCLOSURE_INFOBAR_DELEGATE_H_
#define CHROME_BROWSER_SSL_KNOWN_INTERCEPTION_DISCLOSURE_INFOBAR_DELEGATE_H_
#include <algorithm>
#include "base/memory/raw_ptr.h"
#include "base/memory/singleton.h"
#include "base/time/default_clock.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "components/infobars/core/confirm_infobar_delegate.h"
#include "components/infobars/core/infobar_delegate.h"
#include "net/cert/cert_status_flags.h"
#include "url/gurl.h"
namespace base {
class Clock;
}
namespace content {
class WebContents;
}
namespace user_prefs {
class PrefRegistrySyncable;
}
class Profile;
class KnownInterceptionDisclosureCooldown { … };
void MaybeShowKnownInterceptionDisclosureDialog(
content::WebContents* web_contents,
net::CertStatus cert_status);
class KnownInterceptionDisclosureInfoBarDelegate
: public ConfirmInfoBarDelegate { … };
#endif