mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 23:53:20 +00:00
23 lines
340 B
C
23 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();
|
||
|
};
|
||
|
|
||
|
}
|