2022-10-08 23:53:08 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2022, Andrew Kaster <akaster@serenityos.org>
|
2024-04-05 15:44:35 -03:00
|
|
|
* Copyright (c) 2024, Shannon Booth <shannon@serenityos.org>
|
2022-10-08 23:53:08 -03:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2024-02-26 14:54:36 -03:00
|
|
|
#include <LibWeb/WebIDL/Types.h>
|
|
|
|
|
|
2022-10-08 23:53:08 -03:00
|
|
|
namespace Web::HTML {
|
|
|
|
|
|
|
|
|
|
class NavigatorConcurrentHardwareMixin {
|
|
|
|
|
public:
|
2025-12-04 11:59:18 -03:00
|
|
|
static WebIDL::UnsignedLongLong hardware_concurrency();
|
2022-10-08 23:53:08 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|