Previously we were inconsistent by generating code for enum definitions but not generating code for dictionaries. With future changes to the IDL generator to expose helpers to convert to and from IDL values this produced circular depdendencies. To solve this problem, also generate the dictionary definitions in bindings headers.
34 lines
823 B
C++
34 lines
823 B
C++
/*
|
|
* Copyright (c) 2025, Psychpsyo <psychpsyo@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Bindings/XRSystem.h>
|
|
#include <LibWeb/Internals/InternalsBase.h>
|
|
#include <LibWeb/WebXR/XRSession.h>
|
|
|
|
namespace Web::Internals {
|
|
|
|
// https://github.com/immersive-web/webxr-test-api/blob/main/explainer.md
|
|
class WEB_API FakeXRDevice final : public InternalsBase {
|
|
WEB_PLATFORM_OBJECT(FakeXRDevice, InternalsBase);
|
|
GC_DECLARE_ALLOCATOR(FakeXRDevice);
|
|
|
|
public:
|
|
static GC::Ref<FakeXRDevice> create(JS::Realm&);
|
|
virtual ~FakeXRDevice() override;
|
|
|
|
void simulate_user_activation(GC::Ref<WebIDL::CallbackType>) const;
|
|
|
|
GC::Ref<WebIDL::Promise> disconnect() const;
|
|
|
|
private:
|
|
explicit FakeXRDevice(JS::Realm&);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
};
|
|
|
|
}
|