chromium/chrome/browser/enterprise/connectors/interstitials/enterprise_block_page.h

// 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 CHROME_BROWSER_ENTERPRISE_CONNECTORS_INTERSTITIALS_ENTERPRISE_BLOCK_PAGE_H_
#define CHROME_BROWSER_ENTERPRISE_CONNECTORS_INTERSTITIALS_ENTERPRISE_BLOCK_PAGE_H_

#include <memory>
#include <string>

#include "chrome/browser/enterprise/connectors/common.h"
#include "components/safe_browsing/content/browser/safe_browsing_blocking_page.h"
#include "components/security_interstitials/content/security_interstitial_page.h"

class GURL;

// This class is responsible for showing/hiding the interstitial page that
// occurs when a url is suspicious and needs to be blocked as per
// rules configured by the admin of an enterprise managed browser.
class EnterpriseBlockPage
    : public security_interstitials::SecurityInterstitialPage {};

#endif  // CHROME_BROWSER_ENTERPRISE_CONNECTORS_INTERSTITIALS_ENTERPRISE_BLOCK_PAGE_H_