chromium/components/security_interstitials/core/safe_browsing_quiet_error_ui.h

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_SECURITY_INTERSTITIALS_CORE_SAFE_BROWSING_QUIET_ERROR_UI_H_
#define COMPONENTS_SECURITY_INTERSTITIALS_CORE_SAFE_BROWSING_QUIET_ERROR_UI_H_

#include "base/time/time.h"
#include "base/values.h"
#include "components/security_interstitials/core/base_safe_browsing_error_ui.h"
#include "components/security_interstitials/core/controller_client.h"
#include "url/gurl.h"

namespace security_interstitials {

// Quiet version of the safe browsing interstitial. This is the small screen
// version of the interstitial selectively used in parts of WebView.
// This class displays a quiet UI for Safe Browsing errors that block page loads
// specifically for WebView. This class is purely about visual display; it does
// not do any error-handling logic to determine what type of error should be
// displayed when.
class SafeBrowsingQuietErrorUI
    : public security_interstitials::BaseSafeBrowsingErrorUI {};

}  // security_interstitials

#endif  // COMPONENTS_SECURITY_INTERSTITIALS_CORE_SAFE_BROWSING_QUIET_ERROR_UI_H_