/* * Copyright (c) 2025, Jelle Raaijmakers * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include namespace Web::Gamepad { class NavigatorGamepadPartial { public: WebIDL::ExceptionOr>> get_gamepads(); private: virtual ~NavigatorGamepadPartial() = default; friend class HTML::Navigator; }; }