Files
ladybird/Libraries/LibWeb/HTML/NavigatorDeviceMemory.h
Timothy Flynn 674075f79e Everywhere: Remove LibCore/System.h includes from header files
This reduces the number of compilation jobs when System.h changes from
about 750 to 60. (There are still a large number of linker jobs.)
2025-12-04 15:40:46 +00:00

19 lines
276 B
C++

/*
* 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:
WebIDL::Double device_memory() const;
};
}