Files
ladybird/Libraries/LibWebView/WebUI/VersionUI.h
Timothy Flynn 06796f5f7f LibURL+LibWeb+LibWebView: Convert about:version to a proper WebUI
Passing the browser command line and executable path to every WebContent
process just in case we load about:version always felt a bit weird. We
now use the WebUI framework to load this information on demand.
2026-04-21 06:59:11 -04:00

23 lines
334 B
C++

/*
* Copyright (c) 2026, Tim Flynn <trflynn89@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWebView/WebUI.h>
namespace WebView {
class VersionUI final : public WebUI {
WEB_UI(VersionUI);
private:
virtual void register_interfaces() override;
void load_version_info();
};
}