2024-10-08 10:51:30 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2024, Jelle Raaijmakers <jelle@ladybird.org>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <LibWeb/WebIDL/Types.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
|
|
|
|
|
class NavigatorDeviceMemoryMixin {
|
|
|
|
|
public:
|
2025-12-04 11:59:18 -03:00
|
|
|
WebIDL::Double device_memory() const;
|
2024-10-08 10:51:30 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|