// Copyright 2019 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_KNOWN_INTERCEPTION_DISCLOSURE_UI_H_ #define COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_KNOWN_INTERCEPTION_DISCLOSURE_UI_H_ #include "content/public/browser/web_ui_controller.h" namespace content { class WebUI; } namespace security_interstitials { // The WebUI for chrome://connection-monitoring-detected, which provides details // to users when Chrome has detected known network interception. class KnownInterceptionDisclosureUI : public content::WebUIController { … }; } // namespace security_interstitials #endif // COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_KNOWN_INTERCEPTION_DISCLOSURE_UI_H_