#ifndef COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_SECURITY_INTERSTITIAL_TAB_HELPER_H_
#define COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_SECURITY_INTERSTITIAL_TAB_HELPER_H_
#include <map>
#include "components/security_interstitials/core/common/mojom/interstitial_commands.mojom.h"
#include "components/security_interstitials/core/controller_client.h"
#include "content/public/browser/render_frame_host_receiver_set.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/browser/web_contents_user_data.h"
namespace content {
class NavigationHandle;
class WebContents;
}
namespace security_interstitials {
class SecurityInterstitialPage;
class SecurityInterstitialTabHelper
: public content::WebContentsObserver,
public content::WebContentsUserData<SecurityInterstitialTabHelper>,
public security_interstitials::mojom::InterstitialCommands { … };
}
#endif