blob: 92cee991299ceb3847674d68ffe663d1ed1e1296 [file] [log] [blame]
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IOS_CHROME_BROWSER_UI_WEBUI_DOWNLOAD_INTERNALS_UI_H_
#define IOS_CHROME_BROWSER_UI_WEBUI_DOWNLOAD_INTERNALS_UI_H_
#include "ios/web/public/webui/web_ui_ios_controller.h"
// The WebUI for chrome://download-internals on iOS.
class DownloadInternalsUI : public web::WebUIIOSController {
public:
DownloadInternalsUI(web::WebUIIOS* web_ui, const std::string& host);
DownloadInternalsUI(const DownloadInternalsUI&) = delete;
void operator=(const DownloadInternalsUI&) = delete;
~DownloadInternalsUI() override;
};
#endif // IOS_CHROME_BROWSER_UI_WEBUI_DOWNLOAD_INTERNALS_UI_H_