// Copyright 2020 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_INSECURE_FORM_BLOCKING_PAGE_H_ #define COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_INSECURE_FORM_BLOCKING_PAGE_H_ #include "components/security_interstitials/content/security_interstitial_page.h" class PrefRegistrySimple; namespace security_interstitials { class SecurityInterstitialControllerClient; // Interstitial page object used for warnings shown when a form embedded on a // secure (HTTPS) page is submitted over HTTP. class InsecureFormBlockingPage : public SecurityInterstitialPage { … }; } // namespace security_interstitials #endif // COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_INSECURE_FORM_BLOCKING_PAGE_H_