mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-20 08:03:21 +00:00
18 lines
359 B
C
18 lines
359 B
C
![]() |
/*
|
||
|
* Copyright (c) 2022, Andrew Kaster <akaster@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
namespace Web::HTML {
|
||
|
|
||
|
class NavigatorConcurrentHardwareMixin {
|
||
|
public:
|
||
|
// https://html.spec.whatwg.org/multipage/workers.html#dom-navigator-hardwareconcurrency
|
||
|
unsigned long long hardware_concurrency() { return 1; }
|
||
|
};
|
||
|
|
||
|
}
|