mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-08 19:32:03 +00:00
22 lines
340 B
C++
22 lines
340 B
C++
/*
|
|
* Copyright (c) 2025, Tim Flynn <trflynn89@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWebView/WebUI.h>
|
|
|
|
namespace WebView {
|
|
|
|
class ProcessesUI : public WebUI {
|
|
WEB_UI(ProcessesUI);
|
|
|
|
private:
|
|
virtual void register_interfaces() override;
|
|
|
|
void update_process_statistics();
|
|
};
|
|
|
|
}
|