// 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 { … }; #endif // COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_SSL_BLOCKING_PAGE_BASE_H_