ladybird/Userland/Libraries/LibWebView/Platform/ProcessStatisticsNoop.cpp

17 lines
269 B
C++
Raw Normal View History

/*
* Copyright (c) 2024, Andrew Kaster <akaster@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibWebView/Platform/ProcessStatistics.h>
namespace WebView {
ErrorOr<void> update_process_statistics(ProcessStatistics&)
{
return {};
}
}