blob: ee8bd61343419b6291d25e4f56d19969644b7337 [file] [log] [blame]
// Copyright 2017 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_CONTENT_SSL_BLOCKING_PAGE_BASE_H_
#define COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_SSL_BLOCKING_PAGE_BASE_H_
#include "components/security_interstitials/content/security_interstitial_page.h"
namespace base {
class Time;
} // namespace base
namespace net {
class SSLInfo;
} // namespace net
// This is the base class for blocking pages representing SSL certificate
// errors.
class SSLBlockingPageBase
: public security_interstitials::SecurityInterstitialPage {
public:
SSLBlockingPageBase(
content::WebContents* web_contents,
const net::SSLInfo& ssl_info,
const GURL& request_url,
bool overridable,
const base::Time& time_triggered,
bool can_show_enhanced_protection_message,
std::unique_ptr<
security_interstitials::SecurityInterstitialControllerClient>
controller_client);
SSLBlockingPageBase(const SSLBlockingPageBase&) = delete;
SSLBlockingPageBase& operator=(const SSLBlockingPageBase&) = delete;
~SSLBlockingPageBase() override;
// security_interstitials::SecurityInterstitialPage:
void OnInterstitialClosing() override;
protected:
void PopulateEnhancedProtectionMessage(base::Value::Dict& load_time_data);
bool ShouldShowEnhancedProtectionMessage();
bool can_show_enhanced_protection_message_ = false;
};
#endif // COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_SSL_BLOCKING_PAGE_BASE_H_