// Copyright 2018 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_CONNECTION_HELP_UI_H_ #define COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_CONNECTION_HELP_UI_H_ #include "content/public/browser/web_ui_controller.h" namespace security_interstitials { // The WebUI for chrome://connection-help, which provides help content to users // with network configuration problems that prevent them from making secure // connections. class ConnectionHelpUI : public content::WebUIController { … }; } // namespace security_interstitials #endif // COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_CONNECTION_HELP_UI_H_